CI: Limit parallel docker builds for performance on small machines (#2082)
This commit is contained in:
parent
9ae99964e6
commit
3962daa3bd
2 changed files with 3 additions and 1 deletions
2
.github/buildkit.toml
vendored
Normal file
2
.github/buildkit.toml
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[worker.oci]
|
||||
max-parallelism = 2
|
2
.github/workflows/docker-test.yml
vendored
2
.github/workflows/docker-test.yml
vendored
|
@ -96,4 +96,4 @@ jobs:
|
|||
CROWDSEC_TEST_NETWORK: net-test
|
||||
run: |
|
||||
cd docker/test
|
||||
pipenv run pytest --durations=0 --color=yes
|
||||
pipenv run pytest -n 2 --durations=0 --color=yes
|
||||
|
|
Loading…
Reference in a new issue