We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 578f40a commit f7ccf52Copy full SHA for f7ccf52
jenkins/scripts/VersionSelectorScript.groovy
@@ -73,6 +73,7 @@ def buildExclusions = [
73
[ /vs2015/, releaseType, ltGte(6, 10) ],
74
[ /vs2017/, releaseType, ltGte(10, 14) ],
75
[ /vs2019/, releaseType, lt(14) ],
76
+ [ /vs2019-x86/, releaseType, gte(18) ], // Temporary, https://github.com/nodejs/node/pull/42666
77
// VS versions supported to compile Node.js - also matches labels used by test runners
78
[ /vs2013(-\w+)?$/, testType, gte(6) ],
79
[ /vs2015(-\w+)?$/, testType, gte(10) ],
@@ -82,6 +83,7 @@ def buildExclusions = [
82
83
[ /vs2015-x86$/, testType, gte(10) ], // compile arm64/x86 only once
84
[ /vs2017-x86$/, testType, ltGte(10, 14) ],
85
[ /vs2019-x86$/, testType, lt(14) ],
86
+ [ /vs2019-x86$/, testType, gte(18) ], // Temporary, https://github.com/nodejs/node/pull/42666
87
[ /vs2019-arm64$/, testType, lt(14) ],
88
// VS versions supported to build add-ons
89
[ /vs2013-COMPILED_BY/, testType, gte(9) ],
0 commit comments