Skip to content

Commit

Permalink
Exclude wycheproofs from workspace --all-features due to legacy_compa…
Browse files Browse the repository at this point in the history
…tibility failing
  • Loading branch information
pinkforest committed Mar 8, 2024
1 parent 4af5275 commit 5c4b5d6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- run: rustup target add ${{ matrix.target }}
- run: ${{ matrix.deps }}
- run: cargo test --target ${{ matrix.target }} --no-default-features
- run: cargo test --exclude wycheproof-ed25519-dalek --target ${{ matrix.target }} --no-default-features
- run: cargo test --target ${{ matrix.target }}
- run: cargo test --target ${{ matrix.target }} --all-features
# wycheproof is excluded as --all-features turns on everything in the whole workspace collectively
# ed25519-dalek feature legacy_features cause wycheproof tc 63 & 85 to fail
- run: cargo test --exclude wycheproof-ed25519-dalek --target ${{ matrix.target }} --all-features

test-nightly:
name: Test Nightly
Expand Down

0 comments on commit 5c4b5d6

Please sign in to comment.