Skip to content

Commit

Permalink
fix: use clang 16 on windows in CI
Browse files Browse the repository at this point in the history
Clang 17 broke generating bindings using autocxx on Windows. The
buildscript of occara would freeze.
Linux and MacOS are unaffected.
  • Loading branch information
maximmaxim345 committed Jun 17, 2024
1 parent 0e30c7f commit c110364
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ jobs:
~/.cargo/git/db/
target/
key: cargo-${{ runner.os }}-${{ matrix.toolchain }}-${{ hashFiles('**/Cargo.lock') }}
- name: Install Clang 16 on Windows
if: runner.os == 'Windows'
uses: KyleMayes/install-llvm-action@v2
with:
version: "16"
- name: Build
run: cargo build --verbose --workspace --all-features
- name: Run tests
Expand Down

0 comments on commit c110364

Please sign in to comment.