Skip to content

Commit 10a1a80

Browse files
committed
Remove -T2 from maven on CI and set JAVA_HOME to Java 25
Signed-off-by: Marvin Froeder <velo.br@gmail.com>
1 parent 75897a8 commit 10a1a80

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.circleci/config.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ defaults: &defaults
6363
environment:
6464
# Customize the JVM maximum heap limit
6565
MAVEN_OPTS: -Xmx3200m
66+
JAVA_HOME: /usr/lib/jvm/java-25-openjdk-amd64
6667

6768
# branch filters
6869
master-only: &master-only
@@ -112,6 +113,7 @@ jobs:
112113
- m2repo-{{ checksum "pom.xml" }}
113114
- run:
114115
name: 'Test'
116+
no_output_timeout: 30m
115117
command: |
116118
./mvnw -ntp -B verify -Pno-databases
117119
- save-test-results
@@ -145,7 +147,7 @@ jobs:
145147
- run:
146148
name: 'Prepare environment'
147149
command: |
148-
./mvnw -ntp -B install -Pquickbuild -pl :querydsl-sql-spring,:querydsl-jpa-spring,:querydsl-kotlin-codegen,:querydsl-mongodb,:querydsl-r2dbc,:querydsl-sql-json -am -T2
150+
./mvnw -ntp -B install -Pquickbuild -pl :querydsl-sql-spring,:querydsl-jpa-spring,:querydsl-kotlin-codegen,:querydsl-mongodb,:querydsl-r2dbc,:querydsl-sql-json -am
149151
- run:
150152
name: 'Build and test examples'
151153
command: |
@@ -176,9 +178,11 @@ jobs:
176178
name: 'Prepare environment'
177179
command: |
178180
./mvnw -N org.codehaus.mojo:properties-maven-plugin:1.2.1:write-project-properties -Dproperties.outputFile=querydsl-examples/querydsl-example-ksp-codegen/gradle.properties
179-
./mvnw -ntp -B install -Pquickbuild -pl :querydsl-ksp-codegen,:querydsl-jpa -am -T2
181+
./mvnw -ntp -B install -Pquickbuild -pl :querydsl-ksp-codegen,:querydsl-jpa -am
180182
- run:
181183
name: 'Build and test examples'
184+
environment:
185+
JAVA_HOME: /usr/lib/jvm/java-21-openjdk-amd64
182186
command: |
183187
cd querydsl-examples/querydsl-example-ksp-codegen
184188
./gradlew --no-daemon --console=plain --info --stacktrace test

0 commit comments

Comments
 (0)