Skip to content

Commit

Permalink
jenkins: fix vs2019 exclusion for native suites job (#3601)
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanStojanovic authored Jan 3, 2024
1 parent 94ff7b6 commit e58a9ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jenkins/scripts/VersionSelectorScript.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def buildExclusions = [
// VS versions supported to compile Node.js - also matches labels used by test runners
[ /vs2015(-\w+)?$/, testType, gte(16) ],
[ /vs2017(-\w+)?$/, testType, gte(16) ],
[ /vs2019/, testType, gte(21) ],
[ /vs2019(-\w+)?$/, testType, gte(21) ],
[ /vs2022(-\w+)?$/, testType, lt(20) ], // Temporarily compile Node v20+ on both VS2019 and VS2022
[ /vs2022-x86$/, testType, lt(20) ], // Temporarily compile Node v20+ arm64 and x86 on both VS2019 and VS2022
[ /vs2022-arm64$/, testType, lt(20) ],
Expand Down

0 comments on commit e58a9ce

Please sign in to comment.