From 8f4f16ffff717ec69859726c968af4fa92f20ba9 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Fri, 3 May 2024 13:46:38 +0100 Subject: [PATCH] jenkins: exclude ubuntu1804-arm64 for Node.js 20 (#3699) The minimum supported gcc compiler for Node.js 20 is gcc 10. --- 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 4b41de981..95b38092b 100644 --- a/jenkins/scripts/VersionSelectorScript.groovy +++ b/jenkins/scripts/VersionSelectorScript.groovy @@ -33,7 +33,7 @@ def buildExclusions = [ [ /^centos7-ppcle/, anyType, gte(18) ], // ARM -------------------------------------------------- - [ /^ubuntu1804-arm64/, anyType, gte(21) ], + [ /^ubuntu1804-arm64/, anyType, gte(20) ], // 20.x: gcc8 builds stop [ /^cross-compiler-ubuntu1604-armv[67]-gcc-4.9/, anyType, gte(18) ], [ /^cross-compiler-ubuntu1604-armv[67]-gcc-6/, anyType, gte(18) ], [ /^cross-compiler-ubuntu1804-armv7-gcc-6/, anyType, gte(18) ],