Skip to content

Commit 36c2310

Browse files
committed
ci: fix for OSX path
1 parent 64a5799 commit 36c2310

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/macos-linux-conda.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: ${{ matrix.os }} - ${{ matrix.build_type }} ${{ matrix.cxx_options }}
88
runs-on: ${{ matrix.os }}
99
env:
10-
CCACHE_DIR: /home/runner/.ccache # Enable ccache
10+
CCACHE_DIR: ${{ matrix.CCACHE_DIR }}
1111

1212
strategy:
1313
fail-fast: false
@@ -16,6 +16,11 @@ jobs:
1616
cxx_options: ['', '-mavx2']
1717
build_type: [Release, Debug]
1818

19+
include:
20+
- os: ubuntu-latest
21+
CCACHE_DIR: /home/runner/.ccache
22+
- os: macos-latest
23+
CCACHE_DIR: /Users/runner/.ccache
1924

2025
exclude:
2126
- build_type: Debug

0 commit comments

Comments
 (0)