Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 2dd921d

Browse files
committed
Stop running Windows ARM64 Debug builds (and tests) by default
Currently, a PR (from someone on the ARM64 whitelist) will automatically trigger Windows ARM64 Debug builds. Due to an issue with test definitions, this also triggers a Debug test run. This is unnecessary; Checked test runs (and builds) should be sufficient. Save time and machine resources by not doing Debug builds and tests by default.
1 parent cdf5900 commit 2dd921d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netci.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1219,7 +1219,7 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
12191219
assert isArmWindowsScenario(scenario)
12201220
switch (scenario) {
12211221
case 'default':
1222-
if (configuration == 'Debug' || configuration == 'Checked') {
1222+
if (configuration == 'Checked') {
12231223
Utilities.addDefaultPrivateGithubPRTriggerForBranch(job, branch, contextString, null, arm64Users)
12241224
}
12251225
else {

0 commit comments

Comments
 (0)