We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9ce3da commit 8c8f3baCopy full SHA for 8c8f3ba
jenkins/scripts/VersionSelectorScript.groovy
@@ -49,13 +49,15 @@ def buildExclusions = [
49
[ /vs2017/, releaseType, gte(18) ],
50
[ /vs2019-arm64/, releaseType, lt(20) ],
51
[ /vs2019/, releaseType, gte(21) ],
52
+ [ /vs2022-x86/, releaseType, gte(23) ],
53
[ /vs2022/, releaseType, lt(21) ],
54
// VS versions supported to compile Node.js - also matches labels used by test runners
55
[ /vs2015(-\w+)?$/, testType, gte(18) ],
56
[ /vs2017(-\w+)?$/, testType, gte(18) ],
57
[ /vs2019(-\w+)?$/, testType, gte(21) ],
58
[ /vs2022(-\w+)?$/, testType, lt(20) ], // Temporarily compile Node v20+ on both VS2019 and VS2022
59
[ /vs2022-x86$/, testType, lt(20) ], // Temporarily compile Node v20+ arm64 and x86 on both VS2019 and VS2022
60
+ [ /vs2022-x86$/, testType, gte(23) ],
61
[ /vs2022-arm64$/, testType, lt(20) ],
62
[ /COMPILED_BY-\w+-arm64$/, testType, lt(20) ], // run tests on arm64 for >=19
63
// VS versions supported to build add-ons
0 commit comments