From 9bbd4a3df1b5af58c1e3fcc1ef100006710dd48e Mon Sep 17 00:00:00 2001 From: Elichai Turkel Date: Wed, 11 Mar 2020 12:22:21 +0200 Subject: [PATCH] Disable emscripten tests until they work again https://github.com/rust-lang/rust/issues/66916 https://github.com/rustwasm/team/issues/291 --- .travis.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 83f2bb9..15302cf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: rust -cache: - directories: - - cargo_web +# cache: +# directories: +# - cargo_web rust: - stable @@ -42,12 +42,12 @@ script: - 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 + - if [ ${TRAVIS_RUST_VERSION} == "nightly" -a "$TRAVIS_OS_NAME" = "linux" ]; then cd no_std_test && cargo run --release | grep -q "Verified Successfully"; fi - - if [ ${TRAVIS_RUST_VERSION} == "stable" -a "$TRAVIS_OS_NAME" = "linux" ]; then - CARGO_TARGET_DIR=cargo_web cargo install --verbose --force cargo-web && - cargo web build --verbose --target=asmjs-unknown-emscripten && - cargo web test --verbose --target=asmjs-unknown-emscripten; - fi + - #if [ ${TRAVIS_RUST_VERSION} == "stable" -a "$TRAVIS_OS_NAME" = "linux" ]; then + #CARGO_TARGET_DIR=cargo_web cargo install --verbose --force cargo-web && + #cargo web build --verbose --target=asmjs-unknown-emscripten && + #cargo web test --verbose --target=asmjs-unknown-emscripten; + #fi