Skip to content

Commit

Permalink
Also build linkme-impl in test mode in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Feb 19, 2023
1 parent 1434b8d commit f9a4e7f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ jobs:
with:
toolchain: ${{matrix.rust}}
- run: cargo check --manifest-path tests/crate/Cargo.toml
- run: cargo test
- run: cargo test -p linkme -p linkme-impl
# windows-gnu: https://github.com/dtolnay/linkme/issues/25
continue-on-error: ${{matrix.rust == 'nightly-x86_64-pc-windows-gnu'}}
- run: cargo test --features used_linker
- run: cargo test -p linkme -p linkme-impl --features used_linker
if: startsWith(matrix.rust, 'nightly')
continue-on-error: ${{matrix.rust == 'nightly-x86_64-pc-windows-gnu'}}
- run: cargo test --release
- run: cargo test -p linkme -p linkme-impl --release
continue-on-error: ${{matrix.rust == 'nightly-x86_64-pc-windows-gnu'}}
- run: cargo test --release --features used_linker
- run: cargo test -p linkme -p linkme-impl --release --features used_linker
if: startsWith(matrix.rust, 'nightly')
continue-on-error: ${{matrix.rust == 'nightly-x86_64-pc-windows-gnu'}}

Expand Down

0 comments on commit f9a4e7f

Please sign in to comment.