From 8fc345793285f14cde9ccde942386ca42394a0fa Mon Sep 17 00:00:00 2001 From: Tom Lin Date: Fri, 3 Dec 2021 13:31:42 +0000 Subject: [PATCH] Fix CI paths, again --- .github/workflows/main.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 3620d48..c0c0353 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -63,15 +63,15 @@ jobs: id: prepare-compilers uses: actions/cache@v2 with: - path: ./src/compilers + path: ./compilers key: ${{ runner.os }}-${{ hashFiles('./src/ci-prepare-bionic.sh') }} - name: Prepare compilers if: steps.prepare-compilers.outputs.cache-hit != 'true' - run: source ./ci-prepare-bionic.sh ./compilers SETUP true || true + run: source ./src/ci-prepare-bionic.sh ./compilers SETUP true || true - name: Setup test environment - run: source ./ci-prepare-bionic.sh ./compilers VARS false || true + run: source ./src/ci-prepare-bionic.sh ./compilers VARS false || true # Enable tmate debugging of manually-triggered workflows if the input option was provided - name: Setup tmate session