mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-27 07:47:02 -05:00
ci: run memory intensive check targets sequentially (#3513)
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
parent
ed573c46d6
commit
5b1e3627c9
@ -514,16 +514,14 @@ multirun(
|
|||||||
)
|
)
|
||||||
|
|
||||||
multirun(
|
multirun(
|
||||||
name = "check",
|
name = "parallel_checks",
|
||||||
testonly = True,
|
testonly = True,
|
||||||
commands = [
|
commands = [
|
||||||
":gazelle_check",
|
":gazelle_check",
|
||||||
":buildifier_check",
|
":buildifier_check",
|
||||||
":golangci_lint",
|
|
||||||
":terraform_check",
|
":terraform_check",
|
||||||
":golicenses_check",
|
":golicenses_check",
|
||||||
":license_header_check",
|
":license_header_check",
|
||||||
":govulncheck",
|
|
||||||
":deps_mirror_check",
|
":deps_mirror_check",
|
||||||
":proto_targets_check",
|
":proto_targets_check",
|
||||||
":unused_gh_actions",
|
":unused_gh_actions",
|
||||||
@ -542,6 +540,19 @@ multirun(
|
|||||||
visibility = ["//visibility:public"],
|
visibility = ["//visibility:public"],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
multirun(
|
||||||
|
name = "check",
|
||||||
|
testonly = True,
|
||||||
|
commands = [
|
||||||
|
":parallel_checks",
|
||||||
|
":golangci_lint",
|
||||||
|
":govulncheck",
|
||||||
|
],
|
||||||
|
jobs = 1, # execute sequentially to avoid running into memory issues on our CI runners
|
||||||
|
stop_on_error = False,
|
||||||
|
visibility = ["//visibility:public"],
|
||||||
|
)
|
||||||
|
|
||||||
multirun(
|
multirun(
|
||||||
name = "generate_files",
|
name = "generate_files",
|
||||||
commands = [
|
commands = [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user