curve25519-dalek-source/.travis.yml

25 lines
690 B
YAML
Raw Normal View History

2017-03-13 23:56:44 +00:00
language: rust
rust:
- stable
- beta
- nightly
env:
- TEST_COMMAND=test FEATURES='yolocrypto'
- TEST_COMMAND=bench FEATURES='yolocrypto bench'
2017-03-13 23:56:44 +00:00
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:
- rust: stable
env: TEST_COMMAND=bench FEATURES='yolocrypto bench'
2017-03-13 23:56:44 +00:00
- rust: beta
env: TEST_COMMAND=bench FEATURES='yolocrypto bench'
2017-03-13 23:56:44 +00:00
script:
- cargo $TEST_COMMAND --features="$FEATURES"