We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64a5799 commit 36c2310Copy full SHA for 36c2310
.github/workflows/macos-linux-conda.yml
@@ -7,7 +7,7 @@ jobs:
7
name: ${{ matrix.os }} - ${{ matrix.build_type }} ${{ matrix.cxx_options }}
8
runs-on: ${{ matrix.os }}
9
env:
10
- CCACHE_DIR: /home/runner/.ccache # Enable ccache
+ CCACHE_DIR: ${{ matrix.CCACHE_DIR }}
11
12
strategy:
13
fail-fast: false
@@ -16,6 +16,11 @@ jobs:
16
cxx_options: ['', '-mavx2']
17
build_type: [Release, Debug]
18
19
+ include:
20
+ - os: ubuntu-latest
21
+ CCACHE_DIR: /home/runner/.ccache
22
+ - os: macos-latest
23
+ CCACHE_DIR: /Users/runner/.ccache
24
25
exclude:
26
- build_type: Debug
0 commit comments