mirror of
https://github.com/saymrwulf/risc0-curve25519-dalek-source.git
synced 2026-09-05 20:10:35 +00:00
Only test serde feature on stable to save CI resources.
This commit is contained in:
parent
3d697bf27a
commit
1459e72688
1 changed files with 5 additions and 1 deletions
|
|
@ -7,14 +7,18 @@ rust:
|
|||
|
||||
env:
|
||||
- TEST_COMMAND=test FEATURES=''
|
||||
- TEST_COMMAND=test FEATURES='--features=serde'
|
||||
|
||||
matrix:
|
||||
include:
|
||||
# We use the 64-bit optimised curve backend by default, so also test with the 32-bit backend:
|
||||
- rust: nightly
|
||||
env: TEST_COMMAND=build FEATURES='--no-default-features --features=u32_backend'
|
||||
# Test any nightly gated features on nightly:
|
||||
- rust: nightly
|
||||
env: TEST_COMMAND=test FEATURES='--features=nightly'
|
||||
# Test serde support on stable, assuming that if it works there it'll work everywhere:
|
||||
- rust: stable
|
||||
env: TEST_COMMAND=test FEATURE='--features=serde'
|
||||
|
||||
script:
|
||||
- cargo $TEST_COMMAND $FEATURES
|
||||
|
|
|
|||
Loading…
Reference in a new issue