Skip to content

Commit 8ed1b36

Browse files
committed
ci: use rust stable for code coverage tests
1 parent a5a5f94 commit 8ed1b36

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.github/actions/bitcoin-int-tests/Dockerfile.code-cov

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ WORKDIR /build
44

55
ENV CARGO_MANIFEST_DIR="$(pwd)"
66

7-
RUN rustup override set nightly-2022-01-14 && \
8-
rustup component add llvm-tools-preview && \
7+
RUN rustup component add llvm-tools-preview && \
98
cargo install grcov
109

11-
ENV RUSTFLAGS="-Zinstrument-coverage" \
10+
ENV RUSTFLAGS="-Cinstrument-coverage" \
1211
LLVM_PROFILE_FILE="stacks-blockchain-%p-%m.profraw"
13-
12+
1413
COPY . .
1514

1615
RUN cargo build --workspace && \

.github/actions/bitcoin-int-tests/Dockerfile.generic.bitcoin-tests

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@ COPY . .
66

77
WORKDIR /src/testnet/stacks-node
88

9-
RUN rustup override set nightly-2022-01-14 && \
10-
rustup component add llvm-tools-preview && \
9+
RUN rustup component add llvm-tools-preview && \
1110
cargo install grcov
1211

13-
ENV RUSTFLAGS="-Zinstrument-coverage" \
12+
ENV RUSTFLAGS="-Cinstrument-coverage" \
1413
LLVM_PROFILE_FILE="stacks-blockchain-%p-%m.profraw"
1514

1615
RUN cargo test --no-run && \

0 commit comments

Comments
 (0)