mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-08 21:00:40 +00:00
We expect tests to pass on stable and beta, but benches to fail.
This commit is contained in:
parent
f6930997d2
commit
bad1f259b9
1 changed files with 5 additions and 3 deletions
|
|
@ -6,8 +6,8 @@ rust:
|
||||||
- nightly
|
- nightly
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- TEST_COMMAND=test
|
- TEST_COMMAND=test FEATURES='yolocrypto'
|
||||||
- TEST_COMMAND=bench
|
- TEST_COMMAND=bench FEATURES='yolocrypto bench'
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
# We can probably remove this, as we reasonably expect dalek to work on
|
# We can probably remove this, as we reasonably expect dalek to work on
|
||||||
|
|
@ -16,7 +16,9 @@ matrix:
|
||||||
# https://github.com/isislovecruft/curve25519-dalek/pull/38#issuecomment-286027562
|
# https://github.com/isislovecruft/curve25519-dalek/pull/38#issuecomment-286027562
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- rust: stable
|
- rust: stable
|
||||||
|
env: TEST_COMMAND=bench FEATURES='yolocrypto bench'
|
||||||
- rust: beta
|
- rust: beta
|
||||||
|
env: TEST_COMMAND=bench FEATURES='yolocrypto bench'
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- cargo $TEST_COMMAND --features "yolocrypto"
|
- cargo $TEST_COMMAND --features="$FEATURES"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue