From 609c65df0b30d6c1b4ff3a1c8795cb12db282401 Mon Sep 17 00:00:00 2001 From: Steffen Forkmann Date: Mon, 23 Oct 2017 21:06:08 +0200 Subject: [PATCH] Update netci.groovy --- netci.groovy | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/netci.groovy b/netci.groovy index c91ce232d6f..24d7481a2c3 100644 --- a/netci.groovy +++ b/netci.groovy @@ -42,7 +42,12 @@ def static getBuildJobName(def configuration, def os) { // Build and test FCS buildPath = "./fcs/" buildFlavor = "" - build_args = "TestAndNuget" + if (os == 'Windows_NT') { + build_args = "TestAndNuget" + } + else { + build_args = "Build" + } } else if (configuration == "Debug") { buildFlavor = "debug"