revert commands
This commit is contained in:
parent
a150f2974c
commit
7dd0271f3e
1 changed files with 3 additions and 3 deletions
|
@ -26,7 +26,7 @@ jobs:
|
||||||
- v4-cargo-cache-{{ arch }}-{{ checksum "Cargo.lock" }}
|
- v4-cargo-cache-{{ arch }}-{{ checksum "Cargo.lock" }}
|
||||||
- run:
|
- run:
|
||||||
name: Build
|
name: Build
|
||||||
command: RUSTFLAGS="-D warnings" cargo build --features="libsnark"
|
command: WITH_LIBSNARK=1 RUSTFLAGS="-D warnings" ./build.sh
|
||||||
- save_cache:
|
- save_cache:
|
||||||
paths:
|
paths:
|
||||||
- /usr/local/cargo/registry
|
- /usr/local/cargo/registry
|
||||||
|
@ -57,7 +57,7 @@ jobs:
|
||||||
command: cargo clippy -- -D warnings
|
command: cargo clippy -- -D warnings
|
||||||
- run:
|
- run:
|
||||||
name: Run tests
|
name: Run tests
|
||||||
command: RUSTFLAGS="-D warnings" cargo test --release --features="libsnark"
|
command: WITH_LIBSNARK=1 RUSTFLAGS="-D warnings" ./test.sh
|
||||||
# - run:
|
# - run:
|
||||||
# name: Generate code coverage report
|
# name: Generate code coverage report
|
||||||
# command: ./scripts/cov.sh
|
# command: ./scripts/cov.sh
|
||||||
|
@ -106,7 +106,7 @@ jobs:
|
||||||
- v4-cargo-cache-{{ arch }}-{{ checksum "Cargo.lock" }}
|
- v4-cargo-cache-{{ arch }}-{{ checksum "Cargo.lock" }}
|
||||||
- run:
|
- run:
|
||||||
name: Run integration tests
|
name: Run integration tests
|
||||||
command: RUSTFLAGS="-D warnings" cargo test --release --features="libsnark" -- --ignored
|
command: WITH_LIBSNARK=1 RUSTFLAGS="-D warnings" ./full_test.sh
|
||||||
deploy:
|
deploy:
|
||||||
docker:
|
docker:
|
||||||
- image: circleci/python:latest-node
|
- image: circleci/python:latest-node
|
||||||
|
|
Loading…
Reference in a new issue