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

disable parallel build

This commit is contained in:
schaeff 2022-04-04 20:01:34 +02:00
parent b32f4370ad
commit 9c475f3d12

View file

@ -34,7 +34,7 @@ jobs:
test: test:
docker: docker:
- image: zokrates/env:latest - image: zokrates/env:latest
resource_class: 2xlarge resource_class: xlarge
steps: steps:
- checkout - checkout
- run: - run:
@ -48,7 +48,7 @@ jobs:
command: cargo fmt --all -- --check command: cargo fmt --all -- --check
- run: - run:
name: Run clippy name: Run clippy
command: cargo clippy -- -D warnings command: cargo clippy -j 1 -- -D warnings
- run: - run:
name: Run tests name: Run tests
command: WITH_LIBSNARK=1 RUSTFLAGS="-D warnings" ./test.sh command: WITH_LIBSNARK=1 RUSTFLAGS="-D warnings" ./test.sh