From 1449e7c114896a35cd9fc88d9d2397dd314b8ef2 Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Tue, 12 Dec 2023 15:07:14 -0600 Subject: [PATCH] CI: remove nightly toolchain (#1145) --- .github/workflows/rtx.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rtx.yml b/.github/workflows/rtx.yml index 9f618ea29..4d3f20bb4 100644 --- a/.github/workflows/rtx.yml +++ b/.github/workflows/rtx.yml @@ -66,17 +66,19 @@ jobs: with: fetch-depth: 0 - - run: rustup toolchain install nightly --component llvm-tools-preview + #- run: rustup toolchain install nightly --component llvm-tools-preview --profile minimal - uses: Swatinem/rust-cache@v2 with: shared-key: coverage save-if: ${{ github.event_name == 'push' && github.ref_name == 'main' }} cache-all-crates: true - - uses: taiki-e/install-action@cargo-llvm-cov - run: sudo apt-get update; sudo apt-get install zsh fish direnv shfmt - run: npm i -g markdown-magic - - uses: taiki-e/install-action@just - - uses: nick-fields/retry@v2 + - uses: taiki-e/install-action@v2 + with: + tool: cargo-llvm-cov,just + - name: Test w/ coverage + uses: nick-fields/retry@v2 env: GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} RUST_BACKTRACE: "1"