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 8b690f308111bff863821e752b7dfcd486997ce5 Author: Paul King <[email protected]> AuthorDate: Mon Feb 16 15:32:23 2026 +1000 fix jmh tests (split further) --- .github/workflows/groovy-build-benchmarks.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/groovy-build-benchmarks.yml b/.github/workflows/groovy-build-benchmarks.yml index 1b53631d59..685771ec8f 100644 --- a/.github/workflows/groovy-build-benchmarks.yml +++ b/.github/workflows/groovy-build-benchmarks.yml @@ -42,7 +42,7 @@ jobs: uses: actions/upload-artifact@v6 with: name: bench-reports-bench-indy - path: build/results/jmh/ + path: subprojects/performance/build/results/jmh/ - name: Benchmarks (bench classic) run: ./gradlew perf:jmh -PbenchInclude=bench -Pindy=false timeout-minutes: 60 @@ -50,7 +50,7 @@ jobs: uses: actions/upload-artifact@v6 with: name: bench-reports-bench-classic - path: build/results/jmh/ + path: subprojects/performance/build/results/jmh/ - name: Benchmarks run: ./gradlew perf:jmh -PbenchInclude=perf timeout-minutes: 60 @@ -58,7 +58,7 @@ jobs: uses: actions/upload-artifact@v6 with: name: bench-reports-perf-indy - path: build/results/jmh/ + path: subprojects/performance/build/results/jmh/ - name: Benchmarks classic run: ./gradlew perf:jmh -PbenchInclude=perf -Pindy=false timeout-minutes: 60 @@ -66,4 +66,4 @@ jobs: uses: actions/upload-artifact@v6 with: name: bench-reports-perf-classic - path: build/results/jmh/ + path: subprojects/performance/build/results/jmh/
