Skip to content

Commit

Permalink
Fix CI Ccache path
Browse files Browse the repository at this point in the history
  • Loading branch information
zfergus committed Mar 29, 2024
1 parent f23ff17 commit 4ecd50b
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,15 @@ jobs:
- name: Dependencies (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update &&
sudo apt-get install \
xorg-dev \
libsuitesparse-dev \
libblas-dev \
libglu1-mesa-dev \
liblapack-dev \
ccache
sudo apt-get update
sudo apt-get install xorg-dev libsuitesparse-dev libblas-dev libglu1-mesa-dev liblapack-dev ccache
echo 'CACHE_PATH=~/.cache/ccache' >> "$GITHUB_ENV"
- name: Dependencies (macOS)
if: runner.os == 'macOS'
run: brew install suite-sparse ccache
run: |
brew install suite-sparse ccache
echo 'CACHE_PATH=~/Library/Caches/ccache' >> "$GITHUB_ENV"
- name: Cache Build
id: cache-build
Expand Down

0 comments on commit 4ecd50b

Please sign in to comment.