This is an automated email from the ASF dual-hosted git repository. paulk pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/groovy.git
commit 867a980a9414d4396f516966393b14a5cdd5f7ad Author: Paul King <[email protected]> AuthorDate: Mon Feb 16 15:30:54 2026 +1000 fix jmh tests (split further) --- .github/workflows/groovy-build-benchmarks.yml | 28 ++++++++++++++++++++------ .github/workflows/groovy-build-performance.yml | 2 +- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/.github/workflows/groovy-build-benchmarks.yml b/.github/workflows/groovy-build-benchmarks.yml index e3374599a9..1b53631d59 100644 --- a/.github/workflows/groovy-build-benchmarks.yml +++ b/.github/workflows/groovy-build-benchmarks.yml @@ -35,19 +35,35 @@ jobs: java-version: 21 check-latest: true - uses: gradle/actions/setup-gradle@v5 + - name: Benchmarks (bench) + run: ./gradlew perf:jmh -PbenchInclude=bench + timeout-minutes: 60 + - name: Upload bench-reports-bench-indy report + uses: actions/upload-artifact@v6 + with: + name: bench-reports-bench-indy + path: build/results/jmh/ + - name: Benchmarks (bench classic) + run: ./gradlew perf:jmh -PbenchInclude=bench -Pindy=false + timeout-minutes: 60 + - name: Upload bench-reports-bench-classic report + uses: actions/upload-artifact@v6 + with: + name: bench-reports-bench-classic + path: build/results/jmh/ - name: Benchmarks - run: ./gradlew perf:jmh + run: ./gradlew perf:jmh -PbenchInclude=perf timeout-minutes: 60 - - name: Upload benchmarks report + - name: Upload bench-reports-perf-indy report uses: actions/upload-artifact@v6 with: - name: bench-reports-indy + name: bench-reports-perf-indy path: build/results/jmh/ - name: Benchmarks classic - run: ./gradlew perf:jmh -Pindy=false + run: ./gradlew perf:jmh -PbenchInclude=perf -Pindy=false timeout-minutes: 60 - - name: Upload benchmarks report + - name: Upload bench-reports-perf-classic report uses: actions/upload-artifact@v6 with: - name: bench-reports-classic + name: bench-reports-perf-classic path: build/results/jmh/ diff --git a/.github/workflows/groovy-build-performance.yml b/.github/workflows/groovy-build-performance.yml index e36ea7a363..95736ab269 100644 --- a/.github/workflows/groovy-build-performance.yml +++ b/.github/workflows/groovy-build-performance.yml @@ -42,4 +42,4 @@ jobs: uses: actions/upload-artifact@v6 with: name: perf-reports - path: build/*.csv + path: subprojects/performance/build/*.csv
