From 2f2cfda9aacfb7584f7e7929124f40174fa3895e Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Fri, 18 Dec 2015 10:41:20 -0800 Subject: [PATCH] globalParams no longer defined --- netci.groovy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/netci.groovy b/netci.groovy index 44a79ff..c83a6c2 100644 --- a/netci.groovy +++ b/netci.groovy @@ -374,12 +374,12 @@ def static addPRTrigger(def job, def architecture, def os, def configuration, is buildFlow(""" // Build the input jobs in parallel parallel ( - { coreclrBuildJob = build(globalParams, '${inputCoreCLRBuildName}') }, - { windowsBuildJob = build(globalParams, '${inputWindowTestsBuildName}') } + { coreclrBuildJob = build(params, '${inputCoreCLRBuildName}') }, + { windowsBuildJob = build(params, '${inputWindowTestsBuildName}') } ) // And then build the test build -build(globalParams + [CORECLR_BUILD: coreclrBuildJob.build.number, +build(params + [CORECLR_BUILD: coreclrBuildJob.build.number, CORECLR_WINDOWS_BUILD: windowsBuildJob.build.number], '${fullTestJobName}') """) // Needs a workspace -- 2.7.4