Skip to content

Commit

Permalink
chore: make sure the correct toolchain is used
Browse files Browse the repository at this point in the history
  • Loading branch information
vmx committed Oct 18, 2023
1 parent 15ec0ca commit bc631a0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ jobs:
with:
toolchain: ${{ matrix.toolchain }}
targets: ${{ matrix.target }}
- name: Make sure the expected toolchain is used
run: rustup override set ${{ matrix.toolchain }}
- name: Install opencl
run: sudo apt-get install -y ocl-icd-opencl-dev
- run: ${{ matrix.deps }}
Expand Down Expand Up @@ -110,6 +112,8 @@ jobs:
with:
toolchain: ${{ matrix.toolchain }}
target: x86_64-apple-darwin
- name: Make sure the expected toolchain is used
run: rustup override set ${{ matrix.toolchain }}
- run: cargo test --no-default-features --features pairing,multicore
- run: cargo test --no-default-features --features pairing
- run: cargo test --no-default-features --features blst
Expand All @@ -134,6 +138,8 @@ jobs:
with:
toolchain: ${{ matrix.toolchain }}
targets: ${{ matrix.target }}
- name: Make sure the expected toolchain is used
run: rustup override set ${{ matrix.toolchain }}
- uses: msys2/setup-msys2@v2
- run: cargo test --target ${{ matrix.target }} --no-default-features --features pairing,multicore
- run: cargo test --target ${{ matrix.target }} --no-default-features --features pairing
Expand Down

0 comments on commit bc631a0

Please sign in to comment.