Skip to content

Commit c904736

Browse files
authored
jenkins: fix vs2019 exclusion (#4333)
The exclusion for `/vs2019/` was originally `gte(21)` and mistakenly updated to `gte(24)` when it should have been `gte(22)`. Refs: #4320 Signed-off-by: Richard Lau <richard.lau@ibm.com>
1 parent 3e3ba9f commit c904736

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

jenkins/scripts/VersionSelectorScript.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def buildExclusions = [
3434
// https://github.com/nodejs/build/blob/main/doc/windows-visualstudio-supported-versions.md
3535
// Release Builders - should only match one VS version per Node.js version
3636
[ /vs2017/, releaseType, gte(22) ],
37-
[ /vs2019/, releaseType, gte(24) ],
37+
[ /vs2019/, releaseType, gte(22) ],
3838
[ /vs2022-x86/, releaseType, gte(24) ],
3939
[ /vs2022(?!_clang)(-\w+)?$/, releaseType, gte(24) ],
4040
[ /vs2022_clang/, releaseType, lt(24) ],

0 commit comments

Comments
 (0)