summaryrefslogtreecommitdiff
path: root/perf.groovy
diff options
context:
space:
mode:
authorJosé Rivero <jorive@microsoft.com>2017-10-09 17:03:16 -0700
committerGitHub <noreply@github.com>2017-10-09 17:03:16 -0700
commit171c9c25ef815b88fe0656a48042b275c7d61d6d (patch)
tree0b903602b00482c2f655b2ca96e480b1145d45f1 /perf.groovy
parent25bf8677c0f3c5e18f9100d92e7eee915de4e85d (diff)
downloadcoreclr-171c9c25ef815b88fe0656a48042b275c7d61d6d.tar.gz
coreclr-171c9c25ef815b88fe0656a48042b275c7d61d6d.tar.bz2
coreclr-171c9c25ef815b88fe0656a48042b275c7d61d6d.zip
Fixing JitBench (#14364)
- In the lab, the path where the JitBench sources are downloaded is already too long, which eventially causes `dotnet-install.ps1` to fail. Part of the changes are to reduce the PATH where the tests are placed. - Updated the JitBench version/commit being used. This one is already on 2.1 - Fixing typo on `perf.groovy` - Increasing the timeout value as JitBench keeps failing on the lab.
Diffstat (limited to 'perf.groovy')
-rw-r--r--perf.groovy2
1 files changed, 1 insertions, 1 deletions
diff --git a/perf.groovy b/perf.groovy
index 2ef610a31c..f32d5db5ba 100644
--- a/perf.groovy
+++ b/perf.groovy
@@ -677,7 +677,7 @@ parallel(
TriggerBuilder builder = TriggerBuilder.triggerOnPullRequest()
builder.setGithubContext("${os} ${arch} ${opt_level} ${jit} Performance Scenarios Tests")
builder.triggerOnlyOnComment()
- builder.setCustomTriggerPhrase("(?i).*test\\W+${os}\\W+${arch}{$opts}${jitt}\\W+perf\\W+scenarios.*")
+ builder.setCustomTriggerPhrase("(?i).*test\\W+${os}\\W+${arch}${opts}${jitt}\\W+perf\\W+scenarios.*")
builder.triggerForBranch(branch)
builder.emitTrigger(newJob)
}