Skip to content

Commit

Permalink
Update build-and-test.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
VirxEC authored Nov 21, 2023
1 parent 0939602 commit f64d918
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,16 @@ jobs:
shell: bash
run: sudo apt install libclang-15-dev -y
- name: Build project
if: matrix.os != 'ubuntu-latest'
run: cargo build ${{ matrix.features_arg }}
env:
CXX: ${{ matrix.compiler }}
- name: Build project (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: cargo build ${{ matrix.features_arg }}
env:
CXX: ${{ matrix.compiler }}
LIBCLANG_PATH: "/usr/lib/x86_64-linux-gnu/libclang-15.so.1"
- name: Run tests
run: cargo test ${{ matrix.features_arg }}
env:
Expand Down

0 comments on commit f64d918

Please sign in to comment.