Skip to content

Commit

Permalink
Stop creating Linux/x64 corefx flow jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
BruceForstall committed Jun 28, 2018
1 parent 1ad9c94 commit f71044a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions netci.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -3496,6 +3496,7 @@ def static shouldGenerateFlowJob(def scenario, def isPR, def architecture, def c
if (scenario == 'corefx_innerloop') {
return false
}

// Filter based on OS and architecture.

switch (architecture) {
Expand Down Expand Up @@ -3560,6 +3561,14 @@ def static shouldGenerateFlowJob(def scenario, def isPR, def architecture, def c
return false
}
}
else if (architecture == 'x64') {
// Linux/x64 corefx testing doesn't need a flow job; the "build" job runs run-corefx-tests.py which
// builds and runs the corefx tests. Other Linux/x64 flow jobs are required to get the test
// build from a Windows machine.
if (isCoreFxScenario(scenario)) {
return false
}
}
}

// For CentOS, we only want Checked/Release builds.
Expand Down

0 comments on commit f71044a

Please sign in to comment.