summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorJarret Shook <jashoo@microsoft.com>2016-06-23 10:28:42 -0700
committerGitHub <noreply@github.com>2016-06-23 10:28:42 -0700
commit3417df606c096de1044633b3645b29e761dbaf5d (patch)
tree69e381ad9541ccf6feb784ebc31b6cf3e70b1b77 /netci.groovy
parent50dd30e88897c8ee213fa76fb55624eead12f382 (diff)
downloadcoreclr-3417df606c096de1044633b3645b29e761dbaf5d.tar.gz
coreclr-3417df606c096de1044633b3645b29e761dbaf5d.tar.bz2
coreclr-3417df606c096de1044633b3645b29e761dbaf5d.zip
Revert "ARM-CI: Prevent creation of job for Checked configuration"
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy11
1 files changed, 4 insertions, 7 deletions
diff --git a/netci.groovy b/netci.groovy
index 2bd862dc15..6c86765526 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1251,11 +1251,6 @@ combinedScenarios.each { scenario ->
// The tuples (LinuxARMEmulator, other architectures) are not handled and control returns
def isLinuxEmulatorBuild = false
if (os == 'LinuxARMEmulator' && architecture == 'arm') {
- // Cross Builds only in Debug and Release modes allowed
- if ( configuration == 'Checked' ) {
- return
- }
-
isLinuxEmulatorBuild = true
os = 'Ubuntu'
} else if (os == 'LinuxARMEmulator') {
@@ -1760,8 +1755,10 @@ combinedScenarios.each { scenario ->
break
}
else {
- // Make sure the build configuration is either of debug or release
- assert ( lowerConfiguration == 'debug' ) || ( lowerConfiguration == 'release' )
+ // Build only for Debug or Release
+ if ( lowerConfiguration != 'debug' && lowerConfiguration != 'release' ) {
+ break
+ }
// Setup variables to hold emulator folder path and the rootfs mount path
def armemul_path = '/opt/linux-arm-emulator'