1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00

remove useless checks, rename env var

This commit is contained in:
schaeff 2019-01-28 20:05:43 +01:00
parent 7a14e0025f
commit 08cda8ed33
2 changed files with 1 additions and 7 deletions

View file

@ -15,9 +15,6 @@ jobs:
- restore_cache: - restore_cache:
keys: keys:
- v4-cargo-cache-{{ arch }}-{{ checksum "Cargo.lock" }} - v4-cargo-cache-{{ arch }}-{{ checksum "Cargo.lock" }}
- run:
name: Check format
command: rustup component add rustfmt-preview; cargo fmt --all -- --check
- 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
@ -77,9 +74,6 @@ jobs:
- 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:
name: Build libsnark
command: LIBSNARK_SOURCE_PATH=$HOME/libsnark ./build_libsnark.sh
- 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

View file

@ -16,7 +16,7 @@ git tag $TAG
docker build -t zokrates . docker build -t zokrates .
## Log into Dockerhub ## Log into Dockerhub
docker login -u $DOCKER_USER -p $DOCKER_PASS docker login -u $DOCKERHUB_USER -p $DOCKERHUB_PASS
## Release under `latest` tag ## Release under `latest` tag
docker tag zokrates:latest zokrates/zokrates:latest docker tag zokrates:latest zokrates/zokrates:latest