summary refs log tree commit diff
path: root/.github/workflows
diff options
context:
space:
mode:
authorShay <hillerys@element.io>2023-06-20 07:55:46 -0700
committerGitHub <noreply@github.com>2023-06-20 07:55:46 -0700
commit6a5cf1a759526d567b58e33ad18d6db9e3ebde25 (patch)
tree303c63540979b90e67fe5be4a1b82570ac9cf03b /.github/workflows
parentFix admin api documentation typo (#15805) (diff)
downloadsynapse-6a5cf1a759526d567b58e33ad18d6db9e3ebde25.tar.xz
Fix Sytest environmental variable evaluation in CI (#15804)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/tests.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml

index a0d1c24e90..6c22984997 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml
@@ -399,8 +399,8 @@ jobs: env: SYTEST_BRANCH: ${{ github.head_ref }} POSTGRES: ${{ matrix.job.postgres && 1}} - MULTI_POSTGRES: ${{ (matrix.job.postgres == 'multi-postgres') && 1}} - ASYNCIO_REACTOR: ${{ (matrix.job.reactor == 'asyncio') && 1 }} + MULTI_POSTGRES: ${{ (matrix.job.postgres == 'multi-postgres') || '' }} + ASYNCIO_REACTOR: ${{ (matrix.job.reactor == 'asyncio') || '' }} WORKERS: ${{ matrix.job.workers && 1 }} BLACKLIST: ${{ matrix.job.workers && 'synapse-blacklist-with-workers' }} TOP: ${{ github.workspace }}