1
0

Compare commits

...

1 Commits

Author SHA1 Message Date
Olivier Wilkinson (reivilibre)
c011dd299b Increase parallelism of CI runs to 4. 2021-09-21 17:35:15 +01:00
3 changed files with 5 additions and 4 deletions

View File

@@ -113,7 +113,7 @@ jobs:
run: until pg_isready -h localhost; do sleep 1; done
- run: tox -e py,combine
env:
TRIAL_FLAGS: "--jobs=2"
TRIAL_FLAGS: "--jobs=4"
SYNAPSE_POSTGRES: ${{ matrix.database == 'postgres' || '' }}
SYNAPSE_POSTGRES_HOST: localhost
SYNAPSE_POSTGRES_USER: postgres
@@ -141,7 +141,7 @@ jobs:
workdir: /github/workspace
entrypoint: .ci/scripts/test_old_deps.sh
env:
TRIAL_FLAGS: "--jobs=2"
TRIAL_FLAGS: "--jobs=4"
- name: Dump logs
# Note: Dumps to workflow logs instead of using actions/upload-artifact
# This keeps logs colocated with failing jobs
@@ -171,7 +171,7 @@ jobs:
- run: pip install tox
- run: tox -e py,combine
env:
TRIAL_FLAGS: "--jobs=2"
TRIAL_FLAGS: "--jobs=4"
- name: Dump logs
# Note: Dumps to workflow logs instead of using actions/upload-artifact
# This keeps logs colocated with failing jobs

View File

@@ -30,7 +30,7 @@ jobs:
- run: pip install tox
- run: tox -e py
env:
TRIAL_FLAGS: "--jobs=2"
TRIAL_FLAGS: "--jobs=4"
- name: Dump logs
# Note: Dumps to workflow logs instead of using actions/upload-artifact

1
changelog.d/10871.misc Normal file
View File

@@ -0,0 +1 @@
Increase parallelism of CI test runs to 4.