File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/main/java/ai/timefold/solver/benchmarks/micro/common Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ jobs:
121121 - name : Phase 2 - Run the new configuration
122122 working-directory : ./timefold-solver-benchmarks
123123 env :
124- RUN_ID : ${{ github.event.inputs.baseline }}
124+ RUN_ID : ${{ github.event.inputs.branch }}
125125 shell : bash
126126 run : |
127127 ./run-scoredirector.sh
Original file line number Diff line number Diff line change @@ -178,6 +178,7 @@ public ChainedOptionsBuilder getBaseJmhConfig(C configuration) {
178178 .forks (configuration .getForkCount ())
179179 .warmupIterations (configuration .getWarmupIterations ())
180180 .measurementIterations (configuration .getMeasurementIterations ())
181+ .jvmArgs ("-XX:+UseZGC" ) // Minimize GC pause times.
181182 .result (resultsDirectory .resolve ("results.json" ).toAbsolutePath ().toString ())
182183 .resultFormat (ResultFormatType .JSON )
183184 .shouldDoGC (true );
You can’t perform that action at this time.
0 commit comments