From 6319d92a9f1a644db5cf73d9fbdbd6126be7ed99 Mon Sep 17 00:00:00 2001 From: Bruce Forstall Date: Fri, 20 Apr 2018 09:45:36 -0700 Subject: [PATCH] Stop building Linux with "verbose" Using "verbose" creates an extraordinary amount of output, obscuring interesting output. I don't know of a compelling reason to continue using "verbose", so stop doing so. --- netci.groovy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/netci.groovy b/netci.groovy index 9f6ce5e..7935c12 100755 --- a/netci.groovy +++ b/netci.groovy @@ -2329,7 +2329,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR def bootstrapRid = Utilities.getBoostrapPublishRid(os) def bootstrapRidEnv = bootstrapRid != null ? "__PUBLISH_RID=${bootstrapRid} " : '' - buildCommands += "${bootstrapRidEnv}./build.sh verbose ${lowerConfiguration} ${architecture}" + buildCommands += "${bootstrapRidEnv}./build.sh ${lowerConfiguration} ${architecture}" buildCommands += "src/pal/tests/palsuite/runpaltests.sh \${WORKSPACE}/bin/obj/${osGroup}.${architecture}.${configuration} \${WORKSPACE}/bin/paltestout" // Basic archiving of the build @@ -2345,7 +2345,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR assert isJitStressScenario(scenario) // Build coreclr - buildCommands += "./build.sh verbose ${lowerConfiguration} ${architecture}" + buildCommands += "./build.sh ${lowerConfiguration} ${architecture}" def scriptFileName = "\$WORKSPACE/set_stress_test_env.sh" @@ -2367,7 +2367,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR break case 'arm64': if (!doCoreFxTesting) { - buildCommands += "ROOTFS_DIR=/opt/arm64-xenial-rootfs ./build.sh verbose ${lowerConfiguration} ${architecture} cross crosscomponent clang3.8" + buildCommands += "ROOTFS_DIR=/opt/arm64-xenial-rootfs ./build.sh ${lowerConfiguration} ${architecture} cross crosscomponent clang3.8" // HACK -- Arm64 does not have corefx jobs yet. buildCommands += "git clone https://github.com/dotnet/corefx fx" -- 2.7.4