From abf9ebd19e7e8043fcedfff150c37d3f178c0fc8 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Tue, 12 Apr 2022 12:35:47 +0100 Subject: [PATCH] jenkins: temporarily exclude win32 for Node.js 18 (#2921) Refs: https://github.com/nodejs/node/pull/42666 Refs: https://github.com/nodejs/node/issues/42543#issuecomment-1094043762 --- jenkins/scripts/VersionSelectorScript.groovy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jenkins/scripts/VersionSelectorScript.groovy b/jenkins/scripts/VersionSelectorScript.groovy index 0087166b0..54e20d575 100644 --- a/jenkins/scripts/VersionSelectorScript.groovy +++ b/jenkins/scripts/VersionSelectorScript.groovy @@ -73,6 +73,7 @@ def buildExclusions = [ [ /vs2015/, releaseType, ltGte(6, 10) ], [ /vs2017/, releaseType, ltGte(10, 14) ], [ /vs2019/, releaseType, lt(14) ], + [ /vs2019-x86/, releaseType, gte(18) ], // Temporary, https://github.com/nodejs/node/pull/42666 // VS versions supported to compile Node.js - also matches labels used by test runners [ /vs2013(-\w+)?$/, testType, gte(6) ], [ /vs2015(-\w+)?$/, testType, gte(10) ], @@ -82,6 +83,7 @@ def buildExclusions = [ [ /vs2015-x86$/, testType, gte(10) ], // compile arm64/x86 only once [ /vs2017-x86$/, testType, ltGte(10, 14) ], [ /vs2019-x86$/, testType, lt(14) ], + [ /vs2019-x86$/, testType, gte(18) ], // Temporary, https://github.com/nodejs/node/pull/42666 [ /vs2019-arm64$/, testType, lt(14) ], // VS versions supported to build add-ons [ /vs2013-COMPILED_BY/, testType, gte(9) ],