Skip to content

Commit

Permalink
ci: pin nightly toolchain (#112)
Browse files Browse the repository at this point in the history
This PR flips the script on #92 and pins the nightly toolchain. This is
necessary due to an [upstream
issue](dalek-cryptography/curve25519-dalek#618)
that now fails nightly CI.
  • Loading branch information
AaronFeickert authored Feb 7, 2024
1 parent 854dd88 commit da71f78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
- name: toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
toolchain: nightly-2024-02-01
targets: wasm32-unknown-unknown
- name: build (WASM)
run: cargo +nightly build --target wasm32-unknown-unknown --no-default-features -Zavoid-dev-deps
run: cargo +nightly-2024-02-01 build --target wasm32-unknown-unknown --no-default-features -Zavoid-dev-deps

test:
name: cargo test
Expand All @@ -24,7 +24,7 @@ jobs:
matrix:
rust:
- stable
- nightly
- nightly-2024-02-01
steps:
- name: checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit da71f78

Please sign in to comment.