Skip to content

Commit

Permalink
CI: pin nightly version to 2022-11-01
Browse files Browse the repository at this point in the history
A pinned nightly may potentially work around the build failures we're
experiencing due to build scripts using SIMD features:

#433 (comment)
  • Loading branch information
tarcieri committed Nov 13, 2022
1 parent 081f632 commit 20e77f8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2022-11-01
# Build with AVX2 features, then with AVX512 features
- env:
RUSTFLAGS: "-C target_feature=+avx2"
Expand Down Expand Up @@ -66,7 +68,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2022-11-01
- run: cargo test --features "nightly"

msrv:
Expand Down

0 comments on commit 20e77f8

Please sign in to comment.