Skip to content

Commit

Permalink
GHA: fix ccache on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
dyfer committed Aug 30, 2024
1 parent 4d5ef86 commit 3da453b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:
- name: Linux-x64-22.04
os: ubuntu-22.04
cmake-flags: '-G "Unix Makefiles" -D RULE_LAUNCH_COMPILE=ccache'
cache-path: '~/.ccache'
cache-path: '~/.config/ccache'

- name: Linux-x64-24.04
os: ubuntu-24.04
cmake-flags: '-G "Unix Makefiles" -D RULE_LAUNCH_COMPILE=ccache'
cache-path: '~/.ccache'
cache-path: '~/.config/ccache'

- name: macOS
os: macos-14
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
restore-keys: ${{ matrix.name }}-
- name: install Linux dependencies
if: runner.os == 'Linux'
run: sudo apt-get install --yes libfftw3-dev
run: sudo apt-get install --yes libfftw3-dev ccache
- name: install FFTW
if: runner.os == 'Windows'
shell: bash
Expand Down

0 comments on commit 3da453b

Please sign in to comment.