Skip to content

Commit

Permalink
jenkins: fix VersionSelectorScript on test CI
Browse files Browse the repository at this point in the history
Windows labels on https://ci.nodejs.org/ are of the form `*-vs201?`,
e.g. `win10-vs2017`.

PR-URL: #1630
Reviewed-By: João Reis <reis@janeasystems.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
  • Loading branch information
richardlau authored and joaocgreis committed Dec 19, 2018
1 parent efc2d64 commit 8eab9cb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jenkins/scripts/VersionSelectorScript.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ def buildExclusions = [
[ /^cross-compiler-armv[67]-gcc-4.9/, anyType, lt(10) ],

// Windows -----------------------------------------------
[ /^vs2013-/, anyType, gte(6) ],
[ /^vs2015-/, anyType, lt(6) ],
[ /^vs2015-/, anyType, gte(10) ],
[ /^vs2017-/, anyType, lt(10) ],
[ /vs2013/, anyType, gte(6) ],
[ /vs2015/, anyType, lt(6) ],
[ /vs2015/, anyType, gte(10) ],
[ /vs2017/, anyType, lt(10) ],

// SmartOS -----------------------------------------------
[ /^smartos14/, anyType, gte(8) ],
Expand Down

0 comments on commit 8eab9cb

Please sign in to comment.