mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-08 21:00:40 +00:00
Fix Travis CI builds after change in features syntax parsing.
cf. https://travis-ci.org/isislovecruft/ed25519-dalek/jobs/593331585#L194
This commit is contained in:
parent
aa49b4cd8d
commit
52ee801022
1 changed files with 7 additions and 7 deletions
14
.travis.yml
14
.travis.yml
|
|
@ -6,26 +6,26 @@ rust:
|
||||||
- nightly
|
- nightly
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- TEST_COMMAND=test FEATURES=''
|
- TEST_COMMAND=test EXTRA_FLAGS='' FEATURES=''
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
# We use the 64-bit optimised curve backend by default, so also test with
|
# We use the 64-bit optimised curve backend by default, so also test with
|
||||||
# the 32-bit backend (this also exercises testing with `no_std`):
|
# the 32-bit backend (this also exercises testing with `no_std`):
|
||||||
- rust: nightly
|
- rust: nightly
|
||||||
env: TEST_COMMAND=build FEATURES='--no-default-features --features=u32_backend'
|
env: TEST_COMMAND=build EXTRA_FLAGS='--no-default-features' FEATURES='u32_backend alloc'
|
||||||
# Also test the `alloc` feature with `no_std`:
|
# Also test the batch feature:
|
||||||
- rust: nightly
|
- rust: nightly
|
||||||
env: TEST_COMMAND=build FEATURES='--no-default-features --features="u64_backend alloc"'
|
env: TEST_COMMAND=build EXTRA_FLAGS='--no-default-features' FEATURES='u64_backend alloc batch'
|
||||||
# Test any nightly gated features on nightly:
|
# Test any nightly gated features on nightly:
|
||||||
- rust: nightly
|
- rust: nightly
|
||||||
env: TEST_COMMAND=test FEATURES='--features=nightly'
|
env: TEST_COMMAND=test EXTRA_FLAGS='' FEATURES='nightly'
|
||||||
# Test serde support on stable, assuming that if it works there it'll work everywhere:
|
# Test serde support on stable, assuming that if it works there it'll work everywhere:
|
||||||
- rust: stable
|
- rust: stable
|
||||||
env: TEST_COMMAND=test FEATURE='--features=serde'
|
env: TEST_COMMAND=test EXTRA_FLAGS='' FEATURES='serde'
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- cargo $TEST_COMMAND $FEATURES
|
- cargo $TEST_COMMAND --features="$FEATURES" $EXTRA_FLAGS
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
slack:
|
slack:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue