espressif / esp-idf-ci-action

GitHub Action for ESP32 CI
MIT License
67 stars 24 forks source link

CMakeLists.txt not found in project directory (RDT-757) #40

Closed epneo-banuprakash closed 5 months ago

epneo-banuprakash commented 6 months ago

Hi, I am facing the issue CMakeLists.txt not found in project directory

Here path is specified as ${{ github.workspace }} but i got this error like CMakeLists.txt not found in project directory /app/repo_name/home/runner/work/repo_name/repo_name.

Actuall Error: CMakeLists.txt not found in project directory /app/epneo/FW_IG_AIR/home/runner/work/FW_IG_AIR/FW_IG_AIR

Why is not taking from the specified path??

kumekay commented 5 months ago

@epneo-banuprakash path is supposed to be relative and needed only for the case if you have multiple projects in the repository.

You can remove path entirely in your case.

epneo-banuprakash commented 5 months ago

It is worked for me, after removing the path , Thanks.