mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
Add a .travis.yml file.
This commit is contained in:
parent
ba9d3be011
commit
4f319873d0
1 changed files with 22 additions and 0 deletions
22
.travis.yml
Normal file
22
.travis.yml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
language: rust
|
||||
|
||||
rust:
|
||||
- stable
|
||||
- beta
|
||||
- nightly
|
||||
|
||||
env:
|
||||
- TEST_COMMAND=test
|
||||
- TEST_COMMAND=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:
|
||||
- rust: stable
|
||||
- rust: beta
|
||||
|
||||
script:
|
||||
- cargo $TEST_COMMAND --features "yolocrypto"
|
||||
Loading…
Reference in a new issue