Skip to content
Snippets Groups Projects
Verified Commit 36c2310a authored by Justin Carpentier's avatar Justin Carpentier
Browse files

ci: fix for OSX path

parent 64a57991
No related branches found
No related tags found
No related merge requests found
Pipeline #28429 passed with warnings
......@@ -7,7 +7,7 @@ jobs:
name: ${{ matrix.os }} - ${{ matrix.build_type }} ${{ matrix.cxx_options }}
runs-on: ${{ matrix.os }}
env:
CCACHE_DIR: /home/runner/.ccache # Enable ccache
CCACHE_DIR: ${{ matrix.CCACHE_DIR }}
strategy:
fail-fast: false
......@@ -16,6 +16,11 @@ jobs:
cxx_options: ['', '-mavx2']
build_type: [Release, Debug]
include:
- os: ubuntu-latest
CCACHE_DIR: /home/runner/.ccache
- os: macos-latest
CCACHE_DIR: /Users/runner/.ccache
exclude:
- build_type: Debug
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment