summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorBruce Forstall <brucefo@microsoft.com>2018-07-18 16:33:54 -0700
committerBruce Forstall <brucefo@microsoft.com>2018-07-18 16:33:54 -0700
commit13386b86dc85cc33bafd44ad5b981fc7185e5989 (patch)
tree344fcb4100791da64d5168ec52116dcd193ab8d8 /netci.groovy
parentcc52c67f5a0a26194c42fbd1b59e284d6727635a (diff)
downloadcoreclr-13386b86dc85cc33bafd44ad5b981fc7185e5989.tar.gz
coreclr-13386b86dc85cc33bafd44ad5b981fc7185e5989.tar.bz2
coreclr-13386b86dc85cc33bafd44ad5b981fc7185e5989.zip
Disable failing Ubuntu x86 jobs
Also add a minimal fix that fixes a current problem, but isn't expected to help fix the entire issue. Failures tracked by https://github.com/dotnet/coreclr/issues/19003.
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy7
1 files changed, 7 insertions, 0 deletions
diff --git a/netci.groovy b/netci.groovy
index a66b0ebbb7..5ec6b4c169 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1235,6 +1235,12 @@ def static addNonPRTriggers(def job, def branch, def isPR, def architecture, def
return
}
+ // Ubuntu x86 CI jobs are failing. Disable non-PR triggered jobs to avoid these constant failures
+ // until this is fixed. Tracked by https://github.com/dotnet/coreclr/issues/19003.
+ if (architecture == 'x86' && os == 'Ubuntu') {
+ return
+ }
+
// Check scenario.
switch (scenario) {
case 'innerloop':
@@ -3427,6 +3433,7 @@ def static CreateOtherTestJob(def dslFactory, def project, def branch, def archi
}
}
+ shell("mkdir ./bin/CoreFxBinDir")
shell("tar -xf ./bin/CoreFxNative/bin/build.tar.gz -C ./bin/CoreFxBinDir")
}