We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76097b4 commit ba07e0eCopy full SHA for ba07e0e
.github/workflows/benchmark.yml
@@ -51,7 +51,7 @@ jobs:
51
matrix:
52
include:
53
- os: ubuntu-latest
54
- additional-task: ':benchmark:jvmComparisonBenchmark'
+ additional-task: ":benchmark:${{ github.event.pull_request.number && 'jvmPrValidationComparisonBenchmark' || 'jvmComparisonBenchmark' }}"
55
- os: macos-latest
56
additional-task: '-x :benchmark:jvmBenchmark'
57
- os: macos-13 # for macosX64
benchmark/build.gradle.kts
@@ -68,6 +68,9 @@ benchmark {
68
create("comparison") {
69
include(".*Comparison.*Benchmark.*")
70
}
71
+ create("prValidationComparison") {
72
+ include(".*ComparisonAvgTimeBenchmark.*")
73
+ }
74
75
targets {
76
register("jvm")
0 commit comments