summaryrefslogtreecommitdiff
path: root/perf.groovy
diff options
context:
space:
mode:
authorDrew Scoggins <anscoggi@microsoft.com>2017-01-11 16:24:43 -0800
committerDrew Scoggins <anscoggi@microsoft.com>2017-01-11 16:27:09 -0800
commit4bce446ccc86a500bc7002ce0c91bc6fd6a22557 (patch)
treece2e84f7829f06414d37119a8fe3cba6737b711d /perf.groovy
parent4692866468c1fb5c8a167efebbe2b0365fb69b97 (diff)
downloadcoreclr-4bce446ccc86a500bc7002ce0c91bc6fd6a22557.tar.gz
coreclr-4bce446ccc86a500bc7002ce0c91bc6fd6a22557.tar.bz2
coreclr-4bce446ccc86a500bc7002ce0c91bc6fd6a22557.zip
Fix pull request title automation
When I added the ability to give a custom name to a run that was kicked off using the PR leg I did it by adding an additional parameter. When using a variable name there I need to use the dollar sign syntax of groovy and not an environment variable.
Diffstat (limited to 'perf.groovy')
-rw-r--r--perf.groovy4
1 files changed, 2 insertions, 2 deletions
diff --git a/perf.groovy b/perf.groovy
index d7eb783cb9..b2dfedd20f 100644
--- a/perf.groovy
+++ b/perf.groovy
@@ -41,7 +41,7 @@ def static getOSGroup(def os) {
{
parameters
{
- stringParam('BenchviewCommitName', '%ghprbPullTitle%', 'The name that you will be used to build the full title of a run in Benchview. The final name will be of the form <branch> private BenchviewCommitName')
+ stringParam('BenchviewCommitName', '\${ghprbPullTitle}', 'The name that you will be used to build the full title of a run in Benchview. The final name will be of the form <branch> private BenchviewCommitName')
}
}
def configuration = 'Release'
@@ -107,7 +107,7 @@ def static getOSGroup(def os) {
{
parameters
{
- stringParam('BenchviewCommitName', '\$ghprbPullTitle', 'The name that you will be used to build the full title of a run in Benchview. The final name will be of the form <branch> private BenchviewCommitName')
+ stringParam('BenchviewCommitName', '\${ghprbPullTitle}', 'The name that you will be used to build the full title of a run in Benchview. The final name will be of the form <branch> private BenchviewCommitName')
}
}
def osGroup = getOSGroup(os)