diff options
| author | Dante Niewenhuis <d.niewenhuis@hotmail.com> | 2026-05-21 19:04:01 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-21 19:04:01 +1000 |
| commit | 816332cbaf256c405a109d8cc16fec8f15df907e (patch) | |
| tree | cb058fae973f81e86316657e5abba5d4fb8f7e29 /opendc-experiments/opendc-experiments-base/build.gradle.kts | |
| parent | 5b4b6bde235e47fcc7074578673dfea1077771a7 (diff) | |
Added benchmarking to the CI (#423)
* Added benchmarking to the CI
* Updated writing access of benchmark.yml
* Added benchmark-comment.yml that pushes the comment to the PR
* Added read permission
Diffstat (limited to 'opendc-experiments/opendc-experiments-base/build.gradle.kts')
| -rw-r--r-- | opendc-experiments/opendc-experiments-base/build.gradle.kts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/opendc-experiments/opendc-experiments-base/build.gradle.kts b/opendc-experiments/opendc-experiments-base/build.gradle.kts index b22e4d41..e71dbbee 100644 --- a/opendc-experiments/opendc-experiments-base/build.gradle.kts +++ b/opendc-experiments/opendc-experiments-base/build.gradle.kts @@ -34,7 +34,8 @@ plugins { jmh { resultFormat.set("JSON") - includes.add(".*WorkloadNoExportBenchmark.*") + val jmhIncludes = findProperty("jmhIncludes") as? String ?: ".*WorkloadNoExportBenchmark.*" + includes.add(jmhIncludes) } tasks.named("jmh") { |
