mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-05 20:30:57 +00:00
Test radix_51, but exclude bench and radix_51 from stable/beta builds.
This commit is contained in:
parent
6991b4264b
commit
d0980b6c8a
1 changed files with 11 additions and 5 deletions
16
.travis.yml
16
.travis.yml
|
|
@ -7,18 +7,24 @@ rust:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- TEST_COMMAND=test FEATURES='yolocrypto'
|
- TEST_COMMAND=test FEATURES='yolocrypto'
|
||||||
|
- TEST_COMMAND=test FEATURES='yolocrypto radix_51'
|
||||||
- TEST_COMMAND=bench FEATURES='yolocrypto bench'
|
- TEST_COMMAND=bench FEATURES='yolocrypto bench'
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
# We can probably remove this, as we reasonably expect dalek to work on
|
exclude:
|
||||||
# stable and beta, but currently we require "test" feature in order to
|
# We can probably remove this, as we reasonably expect dalek to work on
|
||||||
# run benchmarks, which causes dalek not to build on stable. See
|
# stable and beta, but currently we require "test" feature in order to
|
||||||
# https://github.com/isislovecruft/curve25519-dalek/pull/38#issuecomment-286027562
|
# run benchmarks, which causes dalek not to build on stable. See
|
||||||
allow_failures:
|
# https://github.com/isislovecruft/curve25519-dalek/pull/38#issuecomment-286027562
|
||||||
- rust: stable
|
- rust: stable
|
||||||
env: TEST_COMMAND=bench FEATURES='yolocrypto bench'
|
env: TEST_COMMAND=bench FEATURES='yolocrypto bench'
|
||||||
- rust: beta
|
- rust: beta
|
||||||
env: TEST_COMMAND=bench FEATURES='yolocrypto bench'
|
env: TEST_COMMAND=bench FEATURES='yolocrypto bench'
|
||||||
|
# radix_51 requires nightly for u128
|
||||||
|
- rust: stable
|
||||||
|
env: TEST_COMMAND=test FEATURES='yolocrypto radix_51'
|
||||||
|
- rust: beta
|
||||||
|
env: TEST_COMMAND=test FEATURES='yolocrypto radix_51'
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- cargo $TEST_COMMAND --features="$FEATURES"
|
- cargo $TEST_COMMAND --features="$FEATURES"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue