From 23301ca1afe2ba9cfd34e2a2e21a5c285a31e612 Mon Sep 17 00:00:00 2001 From: DeepakBomjan <44976635+DeepakBomjan@users.noreply.github.com> Date: Tue, 22 Oct 2024 12:52:59 +0545 Subject: [PATCH] ci: check with rust 1.81.0 --- .github/workflows/soroban-codecov.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/soroban-codecov.yml b/.github/workflows/soroban-codecov.yml index 8ca37f4..5a35cb2 100644 --- a/.github/workflows/soroban-codecov.yml +++ b/.github/workflows/soroban-codecov.yml @@ -18,8 +18,13 @@ jobs: uses: actions/checkout@v3 with: submodules: true - - name: Install Rust - run: rustup update stable + # - name: Install Rust + # run: rustup update stable + ## Temporary workaround to fix codecov issue with latest version (1.82.0) + - name: Install Rust 1.81.0 + run: | + rustup install 1.81.0 + rustup default 1.81.0 - name: Cache Rust dependencies uses: Swatinem/rust-cache@v2 - name: Install cargo-llvm-cov @@ -40,4 +45,4 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} files: lcov.info flags: rust - fail_ci_if_error: true \ No newline at end of file + fail_ci_if_error: true