From 5a65de21d9f1f5d932d9dbde81b3b7d5bdf656da Mon Sep 17 00:00:00 2001 From: Leo Galambos Date: Fri, 3 Jul 2026 20:03:58 +0200 Subject: [PATCH] fix: workflow/benchmark/jmh exceeded the maximum execution time of 30m --- .github/workflows/benchmarks.yml | 2 +- .github/workflows/pages.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index a45fb6e..fdf18c2 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -56,7 +56,7 @@ jobs: test -f gradle/verification-metadata.xml - name: Run JMH benchmarks - run: ./gradlew clean jmh -Pjmh.includes='.*StemmerComparisonBenchmark.*' --no-daemon + run: ./gradlew clean jmh -Pjmh.includes='.*EnglishStemmerComparisonBenchmark.*' --no-daemon - name: Upload JMH reports uses: actions/upload-artifact@v4 diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 8abb86e..cc7ba1c 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -70,7 +70,7 @@ jobs: test -f gradle/verification-metadata.xml - name: Build reports for publication - run: ./gradlew --no-daemon clean ciRelease pmdMain javadoc jacocoCiReleaseReport pitest jmh -Pjmh.includes='.*StemmerComparisonBenchmark.*' cyclonedxBom + run: ./gradlew --no-daemon clean ciRelease pmdMain javadoc jacocoCiReleaseReport pitest jmh -Pjmh.includes='.*EnglishStemmerComparisonBenchmark.*' cyclonedxBom - name: Prepare gh-pages worktree shell: bash