Skip to content

Commit

Permalink
Merge pull request #15 from balancednetwork/ci/fix-codecov-build-issue
Browse files Browse the repository at this point in the history
ci: check with rust 1.81.0
  • Loading branch information
TRSSMG authored Oct 22, 2024
2 parents deac3a7 + 23301ca commit b300059
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/soroban-codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -40,4 +45,4 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
flags: rust
fail_ci_if_error: true
fail_ci_if_error: true

0 comments on commit b300059

Please sign in to comment.