Skip to content

Commit 9fd241c

Browse files
give it more ram
1 parent 10aace8 commit 9fd241c

3 files changed

Lines changed: 4 additions & 19 deletions

File tree

.github/workflows/ci-build.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
java-version: ["8", "14", "17"]
17+
java-version: ["8", "14", "17", "21", "25"]
1818
permissions:
1919
contents: read
2020
steps:
@@ -30,12 +30,11 @@ jobs:
3030
run: ./scripts/run_no_prep_tests.sh clean compile test-compile
3131
env:
3232
CI_ARGS: "--batch-mode"
33-
MAVEN_OPTS: "-Xmx4g -Xms512m"
33+
MAVEN_OPTS: "-Xmx8g -Xms1g"
3434
- name: Run tests
3535
run: ./scripts/run_no_prep_tests.sh test
3636
env:
3737
CI_ARGS: "--batch-mode"
38-
MAVEN_OPTS: "-Xmx4g -Xms512m"
3938
SKIP_UNSTABLE_TESTS: 1
4039
- name: Upload test results to Codecov
4140
if: ${{ !cancelled() }}

bolt-micronaut/pom.xml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -146,12 +146,7 @@
146146
<compilerArgs>
147147
<arg>-parameters</arg>
148148
</compilerArgs>
149-
<annotationProcessorPaths>
150-
<path>
151-
<groupId>org.projectlombok</groupId>
152-
<artifactId>lombok</artifactId>
153-
<version>${lombok.version}</version>
154-
</path>
149+
<annotationProcessorPaths combine.children="append">
155150
<path>
156151
<groupId>io.micronaut</groupId>
157152
<artifactId>micronaut-inject-java</artifactId>
@@ -169,12 +164,7 @@
169164
<compilerArgs>
170165
<arg>-parameters</arg>
171166
</compilerArgs>
172-
<annotationProcessorPaths>
173-
<path>
174-
<groupId>org.projectlombok</groupId>
175-
<artifactId>lombok</artifactId>
176-
<version>${lombok.version}</version>
177-
</path>
167+
<annotationProcessorPaths combine.children="append">
178168
<path>
179169
<groupId>io.micronaut</groupId>
180170
<artifactId>micronaut-inject-java</artifactId>

pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -203,10 +203,6 @@
203203
<version>${maven-compiler-plugin.version}</version>
204204
<configuration>
205205
<encoding>UTF-8</encoding>
206-
<fork>true</fork>
207-
<meminitial>256m</meminitial>
208-
<maxmem>1024m</maxmem>
209-
<useIncrementalCompilation>false</useIncrementalCompilation>
210206
<annotationProcessorPaths>
211207
<path>
212208
<groupId>org.projectlombok</groupId>

0 commit comments

Comments
 (0)