Only run Debug and Release WinArm32 PR Builds
authorGaurav Khanna <gkhanna@microsoft.com>
Sun, 16 Oct 2016 03:57:00 +0000 (20:57 -0700)
committerGaurav Khanna <gkhanna@microsoft.com>
Sun, 16 Oct 2016 03:57:00 +0000 (20:57 -0700)
netci.groovy

index 9b114ca..381e3c8 100755 (executable)
@@ -1090,7 +1090,10 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
                     }
                     break
                 case 'Windows_NT':
-                    Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Build")
+                    if (configuration == 'Debug' || configuration == 'Release')
+                    { 
+                        Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Build")
+                    }
                     break
                 default:
                     println("NYI os: ${os}");