Skip to content

Commit

Permalink
Fix ccache path in .github/workflows/build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
klzgrad committed Mar 10, 2024
1 parent 8a3cb33 commit 0d7be6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
- name: Cache ccache files
uses: actions/cache@v4
with:
path: ~/.ccache
path: ~/.cache/ccache
key: ccache-linux-${{ matrix.arch }}-${{ hashFiles('CHROMIUM_VERSION') }}-${{ steps.ccache-timestamp.outputs.CCACHE_TIMESTAMP }}
restore-keys: ccache-linux-${{ matrix.arch }}-${{ hashFiles('CHROMIUM_VERSION') }}-
- name: Install APT packages
Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
- name: Cache ccache files
uses: actions/cache@v4
with:
path: ~/.ccache
path: ~/.cache/ccache
key: ccache-android-${{ matrix.arch }}-${{ hashFiles('CHROMIUM_VERSION') }}-${{ steps.ccache-timestamp.outputs.CCACHE_TIMESTAMP }}
restore-keys: ccache-android-${{ matrix.arch }}-${{ hashFiles('CHROMIUM_VERSION') }}-
- name: Install APT packages
Expand Down Expand Up @@ -545,7 +545,7 @@ jobs:
- name: Cache ccache files
uses: actions/cache@v4
with:
path: ~/.ccache
path: ~/.cache/ccache
key: ccache-openwrt-${{ matrix.arch }}-${{ hashFiles('CHROMIUM_VERSION') }}-${{ steps.ccache-timestamp.outputs.CCACHE_TIMESTAMP }}
restore-keys: ccache-openwrt-${{ matrix.arch }}-${{ hashFiles('CHROMIUM_VERSION') }}-
- name: Install APT packages
Expand Down

0 comments on commit 0d7be6b

Please sign in to comment.