File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
.github/actions/bitcoin-int-tests Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -4,13 +4,12 @@ WORKDIR /build
4
4
5
5
ENV CARGO_MANIFEST_DIR="$(pwd)"
6
6
7
- RUN rustup override set nightly-2022-01-14 && \
8
- rustup component add llvm-tools-preview && \
7
+ RUN rustup component add llvm-tools-preview && \
9
8
cargo install grcov
10
9
11
- ENV RUSTFLAGS="-Zinstrument -coverage" \
10
+ ENV RUSTFLAGS="-Cinstrument -coverage" \
12
11
LLVM_PROFILE_FILE="stacks-blockchain-%p-%m.profraw"
13
-
12
+
14
13
COPY . .
15
14
16
15
RUN cargo build --workspace && \
Original file line number Diff line number Diff line change @@ -6,11 +6,10 @@ COPY . .
6
6
7
7
WORKDIR /src/testnet/stacks-node
8
8
9
- RUN rustup override set nightly-2022-01-14 && \
10
- rustup component add llvm-tools-preview && \
9
+ RUN rustup component add llvm-tools-preview && \
11
10
cargo install grcov
12
11
13
- ENV RUSTFLAGS="-Zinstrument -coverage" \
12
+ ENV RUSTFLAGS="-Cinstrument -coverage" \
14
13
LLVM_PROFILE_FILE="stacks-blockchain-%p-%m.profraw"
15
14
16
15
RUN cargo test --no-run && \
You can’t perform that action at this time.
0 commit comments