1
0
Fork 0
mirror of synced 2025-09-24 04:40:05 +00:00

Merge pull request #236 from Zokrates/deactivate-wasm-tests

Remove wasm tests from CI until fixed
This commit is contained in:
Thibaut Schaeffer 2019-01-25 15:43:38 +01:00 committed by GitHub
commit 74ba983731
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,9 +18,9 @@ jobs:
- run: - run:
name: Check format name: Check format
command: rustup component add rustfmt-preview; cargo fmt --all -- --check command: rustup component add rustfmt-preview; cargo fmt --all -- --check
- run: # - run:
name: Download wasm32 target # name: Download wasm32 target
command: rustup target add wasm32-unknown-unknown # command: rustup target add wasm32-unknown-unknown
- run: - run:
name: Build libsnark name: Build libsnark
command: LIBSNARK_SOURCE_PATH=$HOME/libsnark ./build_libsnark.sh command: LIBSNARK_SOURCE_PATH=$HOME/libsnark ./build_libsnark.sh
@ -30,9 +30,9 @@ jobs:
- run: - run:
name: Run tests name: Run tests
command: WITH_LIBSNARK=1 LIBSNARK_SOURCE_PATH=$HOME/libsnark RUSTFLAGS="-D warnings" cargo test --release -- --test-threads=1 command: WITH_LIBSNARK=1 LIBSNARK_SOURCE_PATH=$HOME/libsnark RUSTFLAGS="-D warnings" cargo test --release -- --test-threads=1
- run: # - run:
name: Run tests with WASM enabled # name: Run tests with WASM enabled
command: cd zokrates_core && cargo test --release --features wasm -- --test-threads=1 # command: cd zokrates_core && cargo test --release --features wasm -- --test-threads=1
- run: - run:
name: Run integration tests name: Run integration tests
command: WITH_LIBSNARK=1 LIBSNARK_SOURCE_PATH=$HOME/libsnark RUSTFLAGS="-D warnings" cargo test --release -- --ignored command: WITH_LIBSNARK=1 LIBSNARK_SOURCE_PATH=$HOME/libsnark RUSTFLAGS="-D warnings" cargo test --release -- --ignored