From 17127949470d975d975986bc893ee1fa0a4c8742 Mon Sep 17 00:00:00 2001 From: Andrew Kozlik Date: Sat, 30 Jul 2022 09:23:19 +0200 Subject: [PATCH] fix(ci): Run style checks in series to avoid interleaved output. --- ci/prebuild.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/prebuild.yml b/ci/prebuild.yml index 80852b284..e97215402 100644 --- a/ci/prebuild.yml +++ b/ci/prebuild.yml @@ -19,7 +19,7 @@ style prebuild: GIT_SUBMODULE_STRATEGY: "none" <<: *gitlab_caching script: - - nix-shell --run "poetry run make style_check" + - nix-shell --run "poetry run make -j1 style_check" # Check validity of coin definitions and protobuf files. common prebuild: @@ -33,7 +33,7 @@ gen prebuild: stage: prebuild <<: *gitlab_caching script: - - nix-shell --run "poetry run make gen_check" + - nix-shell --run "poetry run make -j1 gen_check" # Checking format of .editorconfig files. editor prebuild: