From 12fa54857ce3776744420ed5afbc237de6859238 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Sun, 5 May 2024 19:19:48 +0200 Subject: [PATCH] jenkins: skip Alpine 3.18 on Node.js >=22 Required if we want to backport C++20 support on Node.js 22. Refs: https://github.com/nodejs/node/pull/52838 --- jenkins/scripts/VersionSelectorScript.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/scripts/VersionSelectorScript.groovy b/jenkins/scripts/VersionSelectorScript.groovy index 078dceec5..ae3e0b53b 100644 --- a/jenkins/scripts/VersionSelectorScript.groovy +++ b/jenkins/scripts/VersionSelectorScript.groovy @@ -25,7 +25,7 @@ def buildExclusions = [ [ /^centos7-(arm)?64-gcc8/, anyType, gte(18) ], // 18.x: centos7 builds stop [ /^centos7-64/, anyType, gte(18) ], [ /debian10/, anyType, gte(21) ], - [ /alpine-last-latest/, anyType, gte(23) ], // Alpine 3.18. Bug in GCC 12.2. + [ /alpine-last-latest/, anyType, gte(22) ], // Alpine 3.18. Bug in GCC 12.2. [ /rhel7/, anyType, gte(18) ], [ /^ubuntu1604-32/, anyType, gte(18) ], // 32-bit linux for <10 only [ /^ubuntu1604-64/, anyType, gte(18) ],