File tree Expand file tree Collapse file tree 2 files changed +4
-24
lines changed Expand file tree Collapse file tree 2 files changed +4
-24
lines changed Original file line number Diff line number Diff line change @@ -328,29 +328,8 @@ jobs:
328
328
- arrangement : monolith
329
329
database : Postgres
330
330
331
- steps :
332
- - name : Run actions/checkout@v2 for synapse
333
- uses : actions/checkout@v2
334
- with :
335
- path : synapse
336
-
337
- - name : Prepare Complement's Prerequisites
338
- run : synapse/.ci/scripts/setup_complement_prerequisites.sh
339
-
340
- - run : |
341
- set -o pipefail
342
- POSTGRES=${{ (matrix.database == 'Postgres') && 1 || '' }} WORKERS=${{ (matrix.arrangement == 'workers') && 1 || '' }} COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -json 2>&1 | gotestfmt
343
- shell: bash
344
- name: Run Complement Tests
345
-
346
- # XXX When complement with workers is stable, move this back into the standard
347
- # "complement" matrix above.
348
- #
349
- # See https://github.com/matrix-org/synapse/issues/13161
350
- complement-workers :
351
- if : " ${{ !failure() && !cancelled() }}"
352
- needs : linting-done
353
- runs-on : ubuntu-latest
331
+ - arrangement : workers
332
+ database : Postgres
354
333
355
334
steps :
356
335
- name : Run actions/checkout@v2 for synapse
@@ -363,7 +342,7 @@ jobs:
363
342
364
343
- run : |
365
344
set -o pipefail
366
- POSTGRES=1 WORKERS=1 COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -json 2>&1 | gotestfmt
345
+ POSTGRES=${{ (matrix.database == 'Postgres') && 1 || '' }} WORKERS=${{ (matrix.arrangement == 'workers') && 1 || '' }} COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -json 2>&1 | gotestfmt
367
346
shell: bash
368
347
name: Run Complement Tests
369
348
Original file line number Diff line number Diff line change
1
+ Re-enable running Complement tests against Synapse with workers.
You can’t perform that action at this time.
0 commit comments