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 112f30d commit 5f43abdCopy full SHA for 5f43abd
.github/workflows/ci.yml
@@ -35,7 +35,18 @@ jobs:
35
cache-target: release
36
env:
37
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38
+
39
- run: cargo test -p codspeed
40
+ if: runner.os == 'Linux'
41
42
+ # We don't support Windows/MacOS for now, due to libclang not found on some runners:
43
+ - run: LIBCLANG_PATH= cargo test -p codspeed
44
+ if: runner.os == 'macOS'
45
+ - run: |
46
+ $env:LIBCLANG_PATH=""
47
+ cargo test -p codspeed
48
+ if: runner.os == 'Windows'
49
+ shell: powershell
50
51
msrv-check:
52
runs-on: ubuntu-latest
0 commit comments