Unnamed repository; edit this file 'description' to name the repository.
-rw-r--r--.github/workflows/coverage.yaml14
1 files changed, 6 insertions, 8 deletions
diff --git a/.github/workflows/coverage.yaml b/.github/workflows/coverage.yaml
index 9460c6a3c7..55edbbefba 100644
--- a/.github/workflows/coverage.yaml
+++ b/.github/workflows/coverage.yaml
@@ -12,19 +12,17 @@ env:
jobs:
coverage:
runs-on: ubuntu-latest
+ env:
+ RUSTC_BOOTSTRAP: 1
steps:
- uses: actions/checkout@v6
- name: Install Rust toolchain
run: |
- rustup update --no-self-update nightly
- rustup default nightly
- rustup component add --toolchain nightly rust-src rustc-dev rustfmt
- # We also install a nightly rustfmt, because we use `--file-lines` in
- # a test.
- rustup toolchain install nightly --profile minimal --component rustfmt
-
- rustup toolchain install nightly --component llvm-tools-preview
+ rustup update --no-self-update stable
+ rustup default stable
+ rustup component add --toolchain stable rust-src rustc-dev rustfmt
+ rustup toolchain install stable --component llvm-tools-preview
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov