Skip to content

Commit 4de9ff2

Browse files
committed
turn of the UI when running the tests
Signed-off-by: Shawn Hurley <[email protected]>
1 parent 1f74a09 commit 4de9ff2

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/integration-tests.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515

16-
- name: Set up JDK 21
16+
- name: Set up JDK 17
1717
uses: actions/setup-java@v5
1818
with:
19-
java-version: '21'
19+
java-version: '17'
2020
distribution: 'temurin'
21+
cache: maven
2122

2223
- name: Run unit tests
2324
run: mvn clean integration-test
@@ -39,10 +40,10 @@ jobs:
3940
steps:
4041
- uses: actions/checkout@v4
4142

42-
- name: Set up JDK 21
43+
- name: Set up JDK 17
4344
uses: actions/setup-java@v4
4445
with:
45-
java-version: '21'
46+
java-version: '17'
4647
distribution: 'temurin'
4748
cache: maven
4849

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
<artifactId>tycho-surefire-plugin</artifactId>
7171
<version>${tycho.version}</version>
7272
<configuration>
73-
<useUIHarness>true</useUIHarness>
73+
<useUIHarness>false</useUIHarness>
7474
<argLine>${tycho.test.jvmArgs}</argLine>
7575
<!-- kill test JVM if tests take more than 1 minute (60 seconds) to finish -->
7676
<forkedProcessTimeoutInSeconds>60</forkedProcessTimeoutInSeconds>

0 commit comments

Comments
 (0)