From 2cdfe9c8d89548c6f9221c302a674ccafbd960f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Mon, 26 Apr 2021 09:42:47 +0200 Subject: [PATCH] Revert "ci: Pin Rust nightly version" This reverts commit 29dcf2381855e3927791cda587bc60e8a67ff1f4 because the Rust nightly regression has been fixed. https://github.com/rust-lang/rust/pull/84130 --- circle.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/circle.yml b/circle.yml index 81782dc30..035f75f4f 100644 --- a/circle.yml +++ b/circle.yml @@ -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: