1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 07:28:10 +00:00

fix(ci): Run style checks in series to avoid interleaved output.

This commit is contained in:
Andrew Kozlik 2022-07-30 09:23:19 +02:00 committed by matejcik
parent a4343266a3
commit 1712794947

View File

@ -19,7 +19,7 @@ style prebuild:
GIT_SUBMODULE_STRATEGY: "none" GIT_SUBMODULE_STRATEGY: "none"
<<: *gitlab_caching <<: *gitlab_caching
script: 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. # Check validity of coin definitions and protobuf files.
common prebuild: common prebuild:
@ -33,7 +33,7 @@ gen prebuild:
stage: prebuild stage: prebuild
<<: *gitlab_caching <<: *gitlab_caching
script: script:
- nix-shell --run "poetry run make gen_check" - nix-shell --run "poetry run make -j1 gen_check"
# Checking format of .editorconfig files. # Checking format of .editorconfig files.
editor prebuild: editor prebuild: