Skip to content

Commit

Permalink
👷 heap nonsense
Browse files Browse the repository at this point in the history
  • Loading branch information
ebullient committed May 4, 2024
1 parent b956198 commit 955d720
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/tools-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ env:
GRAALVM_DIST: graalvm-community
JAVA_DISTRO: temurin
FAIL_ISSUE: 140
MAVEN_OPTS: "-Xmx2g"

permissions: read-all

Expand Down Expand Up @@ -102,6 +103,8 @@ jobs:

- name: Build with Maven
id: mvn-build
env:
MAVEN_OPTS: ${{ env.MAVEN_OPTS }}
run: |
ls -al sources
./mvnw -B -ntp -DskipFormat verify
Expand Down Expand Up @@ -142,7 +145,7 @@ jobs:
- name: Build and run
id: mvn-build
env:
MAVEN_OPTS: "-Xmx1g"
MAVEN_OPTS: ${{ env.MAVEN_OPTS }}
run: |
./mvnw -B -ntp -DskipFormat verify
Expand All @@ -155,7 +158,7 @@ jobs:
- name: Build and run in native mode
id: mvn-native-build
env:
MAVEN_OPTS: "-Xmx1g"
MAVEN_OPTS: ${{ env.MAVEN_OPTS }}
run: |
./mvnw -B -ntp -Dnative -DskipTests -DskipFormat verify
Expand Down

0 comments on commit 955d720

Please sign in to comment.