summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorEgor Chesakov <Egor.Chesakov@microsoft.com>2018-11-12 17:21:06 -0800
committerGitHub <noreply@github.com>2018-11-12 17:21:06 -0800
commite4bfbba75f40c3203267a235be5266d22adea6a3 (patch)
treec8d7942bd4f345274b8cadf3045db26b51b26db2 /netci.groovy
parentce7e79770b924c3ed4649c60074fa36c1401b4ee (diff)
downloadcoreclr-e4bfbba75f40c3203267a235be5266d22adea6a3.tar.gz
coreclr-e4bfbba75f40c3203267a235be5266d22adea6a3.tar.bz2
coreclr-e4bfbba75f40c3203267a235be5266d22adea6a3.zip
Simplify build.sh command line arguments for Linux/arm cross build (Part 1) (#20836)
* Don't use crosscomponent|-crosscomponent command line args in build.sh * Don't use CROSSCOMPONENT environment variable in build.sh src/pal/tools/gen-buildsys-clang.sh * Remove mentioning -crosscomponent from usage() in build-test.sh * Don't use -crosscomponent in buildpipeline * Don't use -crosscomponent in Groovy files * Remove mentioning crosscomponent in Documentation/building/linux-instructions.md * Stop building Hostx86/armel crossgen in build.sh * Disable CrossGen-ing of System.Private.CoreLib on Linux/armel
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy2
1 files changed, 1 insertions, 1 deletions
diff --git a/netci.groovy b/netci.groovy
index c94cd67595..cf230b60f0 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -2530,7 +2530,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
def dockerImage = getDockerImageName(architecture, os, true)
def dockerCmd = "docker run -i --rm -v \${WORKSPACE}:\${WORKSPACE} -w \${WORKSPACE} -e ROOTFS_DIR=/crossrootfs/${architecture} ${additionalOpts} ${dockerImage} "
- buildCommands += "${dockerCmd}\${WORKSPACE}/build.sh ${lowerConfiguration} ${architecture} cross crosscomponent"
+ buildCommands += "${dockerCmd}\${WORKSPACE}/build.sh ${lowerConfiguration} ${architecture} cross"
if (doCoreFxTesting) {
def scriptFileName = "\$WORKSPACE/set_stress_test_env.sh"