From a7891a6de9d27b51297e04f8af635f641a8ff95f Mon Sep 17 00:00:00 2001 From: Brendan Abolivier Date: Wed, 8 Jun 2022 11:08:01 +0100 Subject: Use correct value for TOP in Sytest --- .github/workflows/tests.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 -- cgit 1.5.1