From 9db4fb444ca173442de28203cb6a737915d4bceb Mon Sep 17 00:00:00 2001 From: Davy Landman Date: Wed, 11 Sep 2024 12:57:09 +0200 Subject: [PATCH] Changed where we store the repo during CI --- .github/workflows/run-integration-test.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-integration-test.yml b/.github/workflows/run-integration-test.yml index 5d79484..bd58cc3 100644 --- a/.github/workflows/run-integration-test.yml +++ b/.github/workflows/run-integration-test.yml @@ -90,7 +90,7 @@ jobs: --rascalVersion "|cwd:///rascal/rascal.jar|" \ --typepalVersion "|cwd:///typepal|" \ --rascalCoreVersion "|cwd:///rascal-core|" \ - --repoFolder "|file:///$RUNNER_TEMP/repos|" \ + --repoFolder "|cw:///repos|" \ --full false \ --clean \ --printWarnings \ @@ -100,7 +100,7 @@ jobs: name: Store rascal tpls with: name: rascal-tpls - path: ${{ env.RUNNER_TEMP }}/repos + path: repos retention-days: 1 if-no-files-found: error @@ -128,7 +128,9 @@ jobs: - uses: actions/download-artifact@v4 with: name: rascal-tpls - path: ${{ env.RUNNER_TEMP }}/repos + path: repos + + - run: ls -alh - name: Download needed rascal-jar run: mvn -B validate @@ -140,7 +142,7 @@ jobs: --rascalVersion "|cwd:///rascal/rascal.jar|" \ --typepalVersion "|cwd:///typepal|" \ --rascalCoreVersion "|cwd:///rascal-core|" \ - --repoFolder "|file:///$RUNNER_TEMP/repos|" \ + --repoFolder "|cw:///repos|" \ --full false \ --clean \ --printWarnings \