From 9c475f3d1284bf5a14c23c6c86b19f37ae1a1e0e Mon Sep 17 00:00:00 2001 From: schaeff Date: Mon, 4 Apr 2022 20:01:34 +0200 Subject: [PATCH] disable parallel build --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c3a1d605..21c8ca46 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,7 +34,7 @@ jobs: test: docker: - image: zokrates/env:latest - resource_class: 2xlarge + resource_class: xlarge steps: - checkout - run: @@ -48,7 +48,7 @@ jobs: command: cargo fmt --all -- --check - run: name: Run clippy - command: cargo clippy -- -D warnings + command: cargo clippy -j 1 -- -D warnings - run: name: Run tests command: WITH_LIBSNARK=1 RUSTFLAGS="-D warnings" ./test.sh