mirror of
https://github.com/saymrwulf/risc0-curve25519-dalek-source.git
synced 2026-09-04 20:03:40 +00:00
Merge branch 'feature/test-radix-51-in-travis' into develop
This commit is contained in:
commit
57189a5b7d
1 changed files with 11 additions and 5 deletions
16
.travis.yml
16
.travis.yml
|
|
@ -7,18 +7,24 @@ rust:
|
|||
|
||||
env:
|
||||
- TEST_COMMAND=test FEATURES='yolocrypto'
|
||||
- TEST_COMMAND=test FEATURES='yolocrypto radix_51'
|
||||
- TEST_COMMAND=bench FEATURES='yolocrypto bench'
|
||||
|
||||
matrix:
|
||||
# We can probably remove this, as we reasonably expect dalek to work on
|
||||
# stable and beta, but currently we require "test" feature in order to
|
||||
# run benchmarks, which causes dalek not to build on stable. See
|
||||
# https://github.com/isislovecruft/curve25519-dalek/pull/38#issuecomment-286027562
|
||||
allow_failures:
|
||||
exclude:
|
||||
# We can probably remove this, as we reasonably expect dalek to work on
|
||||
# stable and beta, but currently we require "test" feature in order to
|
||||
# run benchmarks, which causes dalek not to build on stable. See
|
||||
# https://github.com/isislovecruft/curve25519-dalek/pull/38#issuecomment-286027562
|
||||
- rust: stable
|
||||
env: TEST_COMMAND=bench FEATURES='yolocrypto bench'
|
||||
- rust: beta
|
||||
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:
|
||||
- cargo $TEST_COMMAND --features="$FEATURES"
|
||||
|
|
|
|||
Loading…
Reference in a new issue