Skip to content

Commit

Permalink
Remove $HOME variable usage
Browse files Browse the repository at this point in the history
  • Loading branch information
dshil committed Oct 28, 2024
1 parent ee2758b commit 5141503
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
run: |
echo "IDF Path: $IDF_PATH"
echo "Project Path: $PROJECT_PATH"
ls $HOME/$IDF_PATH
ls $HOME/$PROJECT_PATH
ls $IDF_PATH
ls $PROJECT_PATH
shell: bash

- name: Build Unit tests
run: |
cd $HOME/$PROJECT_PATH/tests
. $HOME/$IDF_PATH/export.sh
. $IDF_PATH/export.sh
cd $PROJECT_PATH/tests
IDF_CCACHE_ENABLE=1 idf.py build
shell: bash

Expand All @@ -48,8 +48,8 @@ jobs:
- name: Build DS18B20 verifier
run: |
cd $HOME/$PROJECT_PATH/tools/ds18b20-verifier
. $HOME/$IDF_PATH/export.sh
. $IDF_PATH/export.sh
cd $PROJECT_PATH/tools/ds18b20-verifier
IDF_CCACHE_ENABLE=1 idf.py build
shell: bash

Expand All @@ -64,8 +64,8 @@ jobs:
- name: Build DS rom code scanner
run: |
cd $HOME/PROJECT_PATH/tools/ds-rom-code-scanner
. $HOME/$IDF_PATH/export.sh
. $IDF_PATH/export.sh
cd $PROJECT_PATH/tools/ds-rom-code-scanner
IDF_CCACHE_ENABLE=1 idf.py build
shell: bash

Expand Down

0 comments on commit 5141503

Please sign in to comment.