File tree Expand file tree Collapse file tree 4 files changed +23
-1
lines changed
Expand file tree Collapse file tree 4 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 3535 run : ./scripts/run_no_prep_tests.sh test
3636 env :
3737 CI_ARGS : " --batch-mode"
38+ MAVEN_OPTS : " -Xmx4g -Xms512m"
3839 SKIP_UNSTABLE_TESTS : 1
3940 - name : Upload test results to Codecov
4041 if : ${{ !cancelled() }}
4748 report_type : test_results
4849 token : ${{ secrets.CODECOV_TOKEN }}
4950 - name : Upload coverage to Codecov
50- if : ${{ !cancelled() && hashFiles('**/target/site/jacoco/jacoco.xml') != '' }}
51+ if : ${{ !cancelled() && startsWith(matrix.java-version, '14') }}
5152 uses : codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
5253 with :
5354 files : " **/target/site/jacoco/jacoco.xml"
Original file line number Diff line number Diff line change 147147 <arg >-parameters</arg >
148148 </compilerArgs >
149149 <annotationProcessorPaths >
150+ <path >
151+ <groupId >org.projectlombok</groupId >
152+ <artifactId >lombok</artifactId >
153+ <version >${lombok.version} </version >
154+ </path >
150155 <path >
151156 <groupId >io.micronaut</groupId >
152157 <artifactId >micronaut-inject-java</artifactId >
165170 <arg >-parameters</arg >
166171 </compilerArgs >
167172 <annotationProcessorPaths >
173+ <path >
174+ <groupId >org.projectlombok</groupId >
175+ <artifactId >lombok</artifactId >
176+ <version >${lombok.version} </version >
177+ </path >
168178 <path >
169179 <groupId >io.micronaut</groupId >
170180 <artifactId >micronaut-inject-java</artifactId >
Original file line number Diff line number Diff line change 1+ config.stopBubbling = true
12lombok.addLombokGeneratedAnnotation = true
Original file line number Diff line number Diff line change 204204 <configuration >
205205 <encoding >UTF-8</encoding >
206206 <fork >true</fork >
207+ <meminitial >256m</meminitial >
208+ <maxmem >1024m</maxmem >
209+ <useIncrementalCompilation >false</useIncrementalCompilation >
210+ <annotationProcessorPaths >
211+ <path >
212+ <groupId >org.projectlombok</groupId >
213+ <artifactId >lombok</artifactId >
214+ <version >${lombok.version} </version >
215+ </path >
216+ </annotationProcessorPaths >
207217 </configuration >
208218 </plugin >
209219 <plugin >
You can’t perform that action at this time.
0 commit comments