Skip to content

Commit 17c73ea

Browse files
authoredMay 6, 2022
Update to cimg/rust:1.60.0 and remove nightly toolchain (#35)
Code coverage is stabilizing in 1.60.0 and no longer requires a nightly toolchain.
1 parent f406652 commit 17c73ea

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed
 

‎.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
build:
44
docker:
5-
- image: cimg/rust:1.59.0
5+
- image: cimg/rust:1.60.0
66
steps:
77
- checkout
88
- run:

‎coverage.sh

+1-7
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,7 @@
33
set -o errexit
44
set -o pipefail
55

6-
# We are using an older version of the toolchain for now as there is a bug with
7-
# coverage generation. See https://github.com/rust-lang/rust/issues/79645
8-
export RUSTUP_TOOLCHAIN=nightly-2022-01-09
9-
10-
# cargo-llvm-cov requires the nightly compiler to be installed
11-
rustup toolchain install $RUSTUP_TOOLCHAIN
12-
rustup component add llvm-tools-preview --toolchain $RUSTUP_TOOLCHAIN
6+
rustup component add llvm-tools-preview
137
cargo install cargo-llvm-cov
148

159
# generate coverage report to command line by default; otherwise allow

0 commit comments

Comments
 (0)
Please sign in to comment.