Skip to content

Commit

Permalink
Changed where we store the repo during CI
Browse files Browse the repository at this point in the history
  • Loading branch information
DavyLandman committed Sep 11, 2024
1 parent 019b7f1 commit 9db4fb4
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/run-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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

Expand Down Expand Up @@ -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
Expand All @@ -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 \
Expand Down

0 comments on commit 9db4fb4

Please sign in to comment.