diff options
author | Kegan Dougal <kegan@matrix.org> | 2023-10-18 16:03:14 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2023-10-18 16:03:14 +0100 |
commit | e989d040dc3d9aeafcd4a494acaf69084fad0e79 (patch) | |
tree | 740180dc098b131f8664f69fd46857b176d69d36 /.github | |
parent | Changelog (diff) | |
download | synapse-e989d040dc3d9aeafcd4a494acaf69084fad0e79.tar.xz |
limit concurrency to 2
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/tests.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 13746608d4..701e56e33e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -640,7 +640,7 @@ jobs: - run: | set -o pipefail - COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -json 2>&1 | synapse/.ci/scripts/gotestfmt + COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -json -p 2 2>&1 | synapse/.ci/scripts/gotestfmt shell: bash env: POSTGRES: ${{ (matrix.database == 'Postgres') && 1 || '' }} |