diff --git a/.github/actions/bitcoin-int-tests/Dockerfile.code-cov b/.github/actions/bitcoin-int-tests/Dockerfile.code-cov index 733f879b7..209b80473 100644 --- a/.github/actions/bitcoin-int-tests/Dockerfile.code-cov +++ b/.github/actions/bitcoin-int-tests/Dockerfile.code-cov @@ -4,13 +4,12 @@ WORKDIR /build ENV CARGO_MANIFEST_DIR="$(pwd)" -RUN rustup override set nightly-2022-01-14 && \ - rustup component add llvm-tools-preview && \ +RUN rustup component add llvm-tools-preview && \ cargo install grcov -ENV RUSTFLAGS="-Zinstrument-coverage" \ +ENV RUSTFLAGS="-Cinstrument-coverage" \ LLVM_PROFILE_FILE="stacks-blockchain-%p-%m.profraw" - + COPY . . RUN cargo build --workspace && \ diff --git a/.github/actions/bitcoin-int-tests/Dockerfile.generic.bitcoin-tests b/.github/actions/bitcoin-int-tests/Dockerfile.generic.bitcoin-tests index 42a0235cf..2fd43a589 100644 --- a/.github/actions/bitcoin-int-tests/Dockerfile.generic.bitcoin-tests +++ b/.github/actions/bitcoin-int-tests/Dockerfile.generic.bitcoin-tests @@ -6,11 +6,10 @@ COPY . . WORKDIR /src/testnet/stacks-node -RUN rustup override set nightly-2022-01-14 && \ - rustup component add llvm-tools-preview && \ +RUN rustup component add llvm-tools-preview && \ cargo install grcov -ENV RUSTFLAGS="-Zinstrument-coverage" \ +ENV RUSTFLAGS="-Cinstrument-coverage" \ LLVM_PROFILE_FILE="stacks-blockchain-%p-%m.profraw" RUN cargo test --no-run && \ diff --git a/.github/actions/bitcoin-int-tests/Dockerfile.large-genesis b/.github/actions/bitcoin-int-tests/Dockerfile.large-genesis index 4f96fd304..1350a6ed8 100644 --- a/.github/actions/bitcoin-int-tests/Dockerfile.large-genesis +++ b/.github/actions/bitcoin-int-tests/Dockerfile.large-genesis @@ -9,11 +9,10 @@ RUN cd / && tar -xvzf bitcoin-0.20.0-x86_64-linux-gnu.tar.gz RUN ln -s /bitcoin-0.20.0/bin/bitcoind /bin/ -RUN rustup override set nightly-2022-01-14 && \ - rustup component add llvm-tools-preview && \ +RUN rustup component add llvm-tools-preview && \ cargo install grcov -ENV RUSTFLAGS="-Zinstrument-coverage" \ +ENV RUSTFLAGS="-Cinstrument-coverage" \ LLVM_PROFILE_FILE="stacks-blockchain-%p-%m.profraw" RUN cargo test --no-run --workspace && \