Skip to content

Commit

Permalink
Add more ccache debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
dshil committed Oct 29, 2024
1 parent 7e2313a commit 80e6ab9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/actions/env_for_all/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ runs:
find . -name '*.cpp' -o -name '*.h' # Lists all matching files
shell: bash

- name: Cache ccache
- name: Setup ccache Cache
uses: actions/cache@v4
with:
path: ~/.cache/ccache
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,31 +34,31 @@ jobs:
- name: Build Unit Tests
run: |
source $HOME/.env/ccache
ccache --show-stats
ccache -xvps
. $IDF_PATH/export.sh
cd $PROJECT_PATH/tests
IDF_CCACHE_ENABLE=1 idf.py build
ccache --show-stats
ccache -xvps
shell: bash

- name: Build DS18B20 Verifier
run: |
source $HOME/.env/ccache
ccache --show-stats
ccache -xvps
. $IDF_PATH/export.sh
cd $PROJECT_PATH/tools/ds18b20-verifier
IDF_CCACHE_ENABLE=1 idf.py build
ccache --show-stats
ccache -xvps
shell: bash

- name: Build DS Rom Code Scanner
run: |
source $HOME/.env/ccache
ccache --show-stats
ccache -xvps
. $IDF_PATH/export.sh
cd $PROJECT_PATH/tools/ds-rom-code-scanner
IDF_CCACHE_ENABLE=1 idf.py build
ccache --show-stats
ccache -xvps
shell: bash

- name: Upload Unit Tests Artifacts
Expand Down

0 comments on commit 80e6ab9

Please sign in to comment.