Skip to content

Commit

Permalink
Revert "ci: Pin Rust nightly version"
Browse files Browse the repository at this point in the history
This reverts commit 29dcf23
because the Rust nightly regression has been fixed.
rust-lang/rust#84130
  • Loading branch information
chfast committed Apr 26, 2021
1 parent 799278b commit 2cdfe9c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -351,14 +351,13 @@ jobs:
command: |
apt -qq update
apt -yq install llvm-11-dev clang-11 --no-install-recommends
rustup toolchain install nightly-2021-04-11 # 2021-04-12 is known to be broken, https://github.com/rust-lang/rust/pull/84130.
rustup toolchain install nightly-x86_64-unknown-linux-gnu
- run:
name: Build
command: RUSTFLAGS="-Z sanitizer=address" ASAN_OPTIONS=detect_leaks=1 cargo +nightly-2021-04-11 build --target x86_64-unknown-linux-gnu

command: RUSTFLAGS="-Z sanitizer=address" ASAN_OPTIONS=detect_leaks=1 cargo +nightly build --target x86_64-unknown-linux-gnu
- run:
name: Test
command: RUSTFLAGS="-Z sanitizer=address -C opt-level=0" ASAN_OPTIONS=detect_leaks=1 cargo +nightly-2021-04-11 test --target x86_64-unknown-linux-gnu
command: RUSTFLAGS="-Z sanitizer=address -C opt-level=0" ASAN_OPTIONS=detect_leaks=1 cargo +nightly test --target x86_64-unknown-linux-gnu
- attach_workspace:
at: ~/build
- run:
Expand Down

0 comments on commit 2cdfe9c

Please sign in to comment.