Skip to content

Commit

Permalink
Pin the nightly version of rust
Browse files Browse the repository at this point in the history
CI was failing on the latest nightly versions of rust due to
rust-lang/packed_simd#288

This commit pins the version of nightly rust to an older version to
avoid this issue.
  • Loading branch information
marcgalois committed Sep 17, 2020
1 parent bfd6872 commit 0259423
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# We've pinned the nightly toolchain to nightly-2020-09-15 until https://github.com/rust-lang/packed_simd/issues/288 is fixed.

image: "rust:latest"

variables:
Expand Down Expand Up @@ -46,12 +48,12 @@ test:stable:
test:without-stable-feature:
extends: .test
variables:
toolchain: nightly
toolchain: nightly-2020-09-15
features: curve25519-dalek serde

test:nightly:
extends: .test
variables:
toolchain: nightly
toolchain: nightly-2020-09-15
features: curve25519-dalek serde nightly

0 comments on commit 0259423

Please sign in to comment.