Skip to content

Commit

Permalink
Fix msrv args
Browse files Browse the repository at this point in the history
  • Loading branch information
qinsoon committed Nov 8, 2024
1 parent 1ce777d commit daba7cb
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,14 @@ jobs:
# Verify the MSRV defined in Cargo.toml
- name: Install MSRV
run: cargo +stable install cargo-msrv --locked
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
# Run cargo-msrv (force using i686 toolchain)
- name: Verify MSRV
id: verify-msrv
run: cargo msrv --path mmtk verify -- cargo check --features semispace --target i686-unknown-linux-gnu
run: cargo msrv verify --path mmtk --target i686-unknown-linux-gnu -- cargo check --features semispace --target i686-unknown-linux-gnu
# If the previous step fails, find MSRV
- name: Find MSRV
if: ${{ steps.verify-msrv.outcome == 'failure' }}
run: cargo msrv --path mmtk -- cargo check --features semispace --target i686-unknown-linux-gnu
run: cargo msrv verify --path mmtk --target i686-unknown-linux-gnu -- cargo check --features semispace --target i686-unknown-linux-gnu

test-weak-ref:
runs-on: ubuntu-22.04
Expand Down

0 comments on commit daba7cb

Please sign in to comment.