Skip to content

Commit 0c4797f

Browse files
committed
Debug GH
1 parent f0da40b commit 0c4797f

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/maven.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,8 @@ jobs:
3333
java-version: ${{ matrix.java }}
3434
distribution: 'adopt'
3535
cache: maven
36-
- name: Maven Clean
37-
run: mvn -B clean --file pom.xml
38-
- name: Maven Compile
39-
run: mvn -B compile --file pom.xml
4036
- name: Maven Tests
41-
run: mvn -B test --file pom.xml --batch-mode --fail-fast -X
37+
run: mvn -B -X -e clean test --file pom.xml --batch-mode --fail-fast
4238

4339
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
4440
#- name: Update dependency graph

liquidjava-verifier/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@
5050
<groupId>org.apache.maven.plugins</groupId>
5151
<artifactId>maven-surefire-plugin</artifactId>
5252
<version>${pVersion.surefire}</version>
53+
<configuration>
54+
<forkCount>3</forkCount>
55+
<reuseForks>false</reuseForks>
56+
<argLine>-Xmx1024m</argLine>
57+
</configuration>
5358
</plugin>
5459

5560
<plugin>

liquidjava-verifier/src/main/java/liquidjava/api/CommandLineLauncher.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public static void main(String[] args) {
2020
ErrorEmitter ee = launch(file);
2121
if (ee.foundError()) {
2222
System.out.println(ee.getFullMessage());
23+
System.out.println("Before exit");
2324
System.exit(ee.getErrorStatus());
2425
}
2526
}

0 commit comments

Comments
 (0)