Skip to content

Commit

Permalink
Break Windows CI apart into smaller jobs (#786)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelSimons authored Nov 6, 2018
1 parent 525100f commit 084b755
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions netci.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,11 @@ platformList.each { platform ->
def(hostOS, containerOS) = platform.tokenize(':')
def machineLabel = (hostOS == 'Windows_2016') ? 'latest-docker' : 'latest-or-auto-docker'

if (containerOS == 'NanoServer-1803') {
versionList = ['2.1-2.2', '3.0']
}
else if (containerOS == 'NanoServer-1709') {
versionList = ['2.1-2.2', '3.0']
if (containerOS == 'NanoServer-1803' || containerOS == 'NanoServer-1709') {
versionList = ['2.1', '2.2', '3.0']
}
else if (containerOS == 'NanoServer-sac2016') {
versionList = ['1.', '2.1-2.2', '3.0']
versionList = ['1.', '2.1', '2.2', '3.0']
}
else {
versionList = ['1.', '2.1-2.2', '3.0']
Expand Down

0 comments on commit 084b755

Please sign in to comment.