diff options
Diffstat (limited to 'netci.groovy')
-rwxr-xr-x | netci.groovy | 7 |
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") } |