rust-secp256k1-unsafe-fast/.travis.yml

69 lines
2.3 KiB
YAML
Raw Normal View History

2014-08-27 17:19:10 +00:00
language: rust
cache:
directories:
- wasm
2018-12-07 19:53:44 +00:00
rust:
- stable
- beta
- nightly
- 1.22.0
distro: bionic
2018-12-07 19:53:44 +00:00
os:
- linux
- windows
2015-07-28 17:38:01 +00:00
addons:
chrome: stable
apt:
packages:
- clang-9
- nodejs
matrix:
exclude:
- rust: 1.22.0
os: windows
2015-07-28 17:38:01 +00:00
script:
2020-03-14 19:57:04 +00:00
- if [ "$TRAVIS_RUST_VERSION" == "1.22.0" ]; then
cargo generate-lockfile --verbose && cargo update -p cc --precise "1.0.41" --verbose;
fi
2019-02-18 12:42:06 +00:00
- cargo build --verbose --no-default-features
- cargo build --verbose --no-default-features --features="bitcoin_hashes"
2019-02-18 12:42:06 +00:00
- cargo build --verbose --no-default-features --features="serde"
- cargo build --verbose --no-default-features --features="lowmemory"
2019-02-18 12:42:06 +00:00
- cargo build --verbose --no-default-features --features="rand"
- cargo build --verbose --no-default-features --features="rand serde recovery endomorphism"
- cargo build --verbose --no-default-features --features="fuzztarget recovery"
- cargo build --verbose --features=rand
2020-01-09 12:47:31 +00:00
- cargo test --no-run --features=fuzztarget
- cargo test --verbose --features="bitcoin_hashes"
- cargo test --verbose --features=rand
2019-08-22 00:16:11 +00:00
- cargo test --verbose --features="rand rand-std"
- cargo test --verbose --features="rand serde"
- cargo test --verbose --features="rand serde recovery endomorphism"
2020-07-04 19:19:03 +00:00
- if [ ${TRAVIS_RUST_VERSION} != "1.22.0" ]; then
cargo test --verbose --features global-context;
fi
- cargo build --verbose
- cargo test --verbose
- cargo build --verbose --release
- cargo test --verbose --release
- cargo run --example sign_verify
- cargo run --example sign_verify_recovery --features=recovery
- cargo run --example generate_keys --features=rand
- if [ ${TRAVIS_RUST_VERSION} == "stable" ]; then cargo doc --verbose --features="rand,serde,recovery,endomorphism"; fi
- if [ ${TRAVIS_RUST_VERSION} == "nightly" ]; then cargo test --verbose --benches --features=unstable; fi
- if [ ${TRAVIS_RUST_VERSION} == "nightly" -a "$TRAVIS_OS_NAME" = "linux" ]; then
2019-10-24 17:24:47 +00:00
cd no_std_test &&
cargo run --release | grep -q "Verified Successfully";
fi
- if [ ${TRAVIS_RUST_VERSION} == "stable" -a "$TRAVIS_OS_NAME" = "linux" ]; then
clang --version &&
CARGO_TARGET_DIR=wasm cargo install --verbose --force wasm-pack &&
sed -i 's/\[lib\]/[lib]\ncrate-type = ["cdylib", "rlib"]/' Cargo.toml &&
CC=clang-9 wasm-pack build &&
CC=clang-9 wasm-pack test --node;
fi