Merge pull request #203 from elichai/2020-03-disable-emscripten
Disable emscripten tests until they work again
This commit is contained in:
commit
12c248dc1b
18
.travis.yml
18
.travis.yml
|
@ -1,7 +1,7 @@
|
||||||
language: rust
|
language: rust
|
||||||
cache:
|
# cache:
|
||||||
directories:
|
# directories:
|
||||||
- cargo_web
|
# - cargo_web
|
||||||
|
|
||||||
rust:
|
rust:
|
||||||
- stable
|
- stable
|
||||||
|
@ -42,12 +42,12 @@ script:
|
||||||
- cargo run --example generate_keys --features=rand
|
- 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} == "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" ]; then cargo test --verbose --benches --features=unstable; fi
|
||||||
- if [ ${TRAVIS_RUST_VERSION} == "nightly" -a "$TRAVIS_OS_NAME" = "linux" ]; then
|
- if [ ${TRAVIS_RUST_VERSION} == "nightly" -a "$TRAVIS_OS_NAME" = "linux" ]; then
|
||||||
cd no_std_test &&
|
cd no_std_test &&
|
||||||
cargo run --release | grep -q "Verified Successfully";
|
cargo run --release | grep -q "Verified Successfully";
|
||||||
fi
|
fi
|
||||||
- if [ ${TRAVIS_RUST_VERSION} == "stable" -a "$TRAVIS_OS_NAME" = "linux" ]; then
|
- #if [ ${TRAVIS_RUST_VERSION} == "stable" -a "$TRAVIS_OS_NAME" = "linux" ]; then
|
||||||
CARGO_TARGET_DIR=cargo_web cargo install --verbose --force cargo-web &&
|
#CARGO_TARGET_DIR=cargo_web cargo install --verbose --force cargo-web &&
|
||||||
cargo web build --verbose --target=asmjs-unknown-emscripten &&
|
#cargo web build --verbose --target=asmjs-unknown-emscripten &&
|
||||||
cargo web test --verbose --target=asmjs-unknown-emscripten;
|
#cargo web test --verbose --target=asmjs-unknown-emscripten;
|
||||||
fi
|
#fi
|
||||||
|
|
Loading…
Reference in New Issue