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 a4b57b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ jobs:
# 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 a4b57b1

Please sign in to comment.