Skip to content

Commit

Permalink
fix commands
Browse files Browse the repository at this point in the history
  • Loading branch information
ss2165 committed Nov 15, 2024
1 parent 77a8f7c commit e7509de
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-rs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ jobs:
toolchain: ${{ matrix.rust }}
- name: Configure default rust toolchain
run: rustup override set ${{steps.toolchain.outputs.name}}

- name: Install CapnProto
run: sudo apt-get install -y capnproto
- name: Build with no features
Expand Down Expand Up @@ -261,16 +260,17 @@ jobs:
toolchain: "stable"
- name: Configure default rust toolchain
run: rustup override set ${{steps.toolchain.outputs.name}}

- name: Install CapnProto
run: sudo apt-get install -y capnproto
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2
with:
version: ${{ matrix.llvm-version[0] }}
env: true
- name: Build
run: cargo test --verbose --workspace --exclude hugr-llvm --features llvm${{ matrix.llvm-version[1] }} --no-run
run: cargo test -p hugr-llvm --verbose --workspace --features llvm${{ matrix.llvm-version[1] }} --no-run
- name: Tests with no features
run: cargo test --verbose --workspace --exclude hugr-llvm --features llvm${{ matrix.llvm-version[1] }}
run: cargo test -p hugr-llvm --verbose --workspace --features llvm${{ matrix.llvm-version[1] }}

rs-semver-checks:
needs: [changes, check]
Expand Down

0 comments on commit e7509de

Please sign in to comment.