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

revert commands

This commit is contained in:
dark64 2021-04-28 15:33:29 +02:00
parent a150f2974c
commit 7dd0271f3e

View file

@ -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