Skip to content

Commit

Permalink
[ci] getting rascal compiled v4
Browse files Browse the repository at this point in the history
  • Loading branch information
DavyLandman committed Sep 10, 2024
1 parent 333a7df commit 58a63ed
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/run-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,11 @@ jobs:
run: mvn -B clean compile package -Drascal.tutor.skip -DskipTests -Drascal.compile.skip
working-directory: deps/rascal

- run: find deps/rascal/target -name '*-shaded.jar' -exec mv '{}' deps/rascal/rascal.jar \;
name: copy rascal jar to predictable location
- name: copy rascal jar to predictable location and cleanup
run: |
rm deps/rascal/target/*-sources.jar
find deps/rascal/target -name 'rascal-*.jar' -exec mv '{}' deps/rascal/rascal.jar \;
rm -rf /deps/rascal/target
- uses: actions/upload-artifact@v4
name: 'Store dependencies for the other jobs'
Expand Down

0 comments on commit 58a63ed

Please sign in to comment.