From c21d6d8beaf71bfd1daf4f262127f4083c74729e Mon Sep 17 00:00:00 2001 From: Anurag Thakur Date: Thu, 2 Jan 2025 15:37:36 +0530 Subject: [PATCH] Test Nightly v7 --- .github/workflows/cypress-tests-runner.yml | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/.github/workflows/cypress-tests-runner.yml b/.github/workflows/cypress-tests-runner.yml index 46290096a11c..611fd35d1ba3 100644 --- a/.github/workflows/cypress-tests-runner.yml +++ b/.github/workflows/cypress-tests-runner.yml @@ -341,21 +341,15 @@ jobs: - name: Install grcov if: ${{ env.RUN_TESTS == 'true' }} - uses: taiki-e/install-action@v2.41.10 - with: - tool: grcov - checksum: true + run: cargo install grcov + # uses: taiki-e/install-action@v2.41.10 + # with: + # tool: grcov + # checksum: true - name: Install Rust Nightly if: ${{ env.RUN_TESTS == 'true' }} - uses: dtolnay/rust-toolchain@master - with: - toolchain: nightly-2025-01-02 - - - name: Stable Rust Default - if: ${{ env.RUN_TESTS == 'true' }} - run: rustup default stable - + run: rustup toolchain install nightly-2025-01-02 - name: Install sccache if: ${{ env.RUN_TESTS == 'true' }}