From 56ef57d9f9efd62cbc12bd038ee2fc47527dc41f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Sun, 28 Jul 2024 13:04:15 +0200 Subject: [PATCH] jenkins: skip debian11 for Node.js >=23 `gcc-12` is not available for this version. Refs: https://github.com/nodejs/build/issues/3806 --- jenkins/scripts/VersionSelectorScript.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/jenkins/scripts/VersionSelectorScript.groovy b/jenkins/scripts/VersionSelectorScript.groovy index 6c2fb09b5..bee53b778 100644 --- a/jenkins/scripts/VersionSelectorScript.groovy +++ b/jenkins/scripts/VersionSelectorScript.groovy @@ -25,6 +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) ], + [ /debian11/, anyType, gte(23) ], [ /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