summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2022-06-08 11:08:01 +0100
committerBrendan Abolivier <babolivier@matrix.org>2022-06-08 11:08:01 +0100
commita7891a6de9d27b51297e04f8af635f641a8ff95f (patch)
tree7032fcc37ef3b06941118e12c3a96ab8e1acc687
parentDon't run all the tests for now (diff)
downloadsynapse-a7891a6de9d27b51297e04f8af635f641a8ff95f.tar.xz
Use correct value for TOP in Sytest
-rw-r--r--.github/workflows/tests.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml

index a62a3369c4..f420f2aeba 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml
@@ -199,7 +199,11 @@ jobs: WORKERS: ${{ matrix.workers && 1 }} REDIS: ${{ matrix.redis && 1 }} BLACKLIST: ${{ matrix.workers && 'synapse-blacklist-with-workers' }} - TOP: ${{ github.workspace }} + # $TOP is usually defined as {{ github.workspace }}, however in this case we're + # operating in the context of the container, where the path defined by + # github.workspace doesn't exist, and the equivalent path is defined as /src in + # synapse_sytest.sh. + TOP: "/src" strategy: fail-fast: false