Skip to content

Commit

Permalink
Ignore macOS job
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Aug 22, 2021
1 parent 289f5b1 commit 3d94f97
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,11 @@ jobs:
toolchain: ${{matrix.rust}}
- run: cargo check --manifest-path tests/crate/Cargo.toml
- run: cargo test
# https://github.com/dtolnay/linkme/issues/25
continue-on-error: ${{matrix.rust == 'nightly-x86_64-pc-windows-gnu'}}
# macos: https://github.com/dtolnay/linkme/issues/41
# windows-gnu: https://github.com/dtolnay/linkme/issues/25
continue-on-error: ${{matrix.os == 'macos' || matrix.rust == 'nightly-x86_64-pc-windows-gnu'}}
- run: cargo test --release
continue-on-error: ${{matrix.rust == 'nightly-x86_64-pc-windows-gnu'}}
continue-on-error: ${{matrix.os == 'macos' || matrix.rust == 'nightly-x86_64-pc-windows-gnu'}}

msrv:
name: Rust 1.31.0
Expand Down

0 comments on commit 3d94f97

Please sign in to comment.