From cd37a3c1ca9a3173d1e202604c71c4aa3068aa2a Mon Sep 17 00:00:00 2001 From: Yousong Zhou Date: Mon, 19 Oct 2020 10:16:21 +0800 Subject: [PATCH] .circleci: build: make with parallel level 2 --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 87b4e3eb96..45567a8cbb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -38,7 +38,7 @@ jobs: command: | targets="$(circleci tests glob "cmd/*" | grep -v cmd/host-image | circleci tests split)" echo $targets | tr ' ' '\n' - make -j3 $targets + make -j2 $targets ls -lh _output/bin/ - save_cache: key: onecloud-build-cache-{{ checksum "go.mod" }}-{{ checksum "Makefile" }}