From 3e7f0971b3002afdf54b00f08baad975e3d933f0 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Fri, 9 Apr 2021 11:01:14 -0400 Subject: [PATCH] jenkins: stop testing on Debian 9 from Node.js 16 Python and gcc/g++ in Debian 9 are not recent enough for the proposed minumum supported versions for Node.js 16. --- jenkins/scripts/VersionSelectorScript.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/jenkins/scripts/VersionSelectorScript.groovy b/jenkins/scripts/VersionSelectorScript.groovy index af957b7d2..9f7e66d62 100644 --- a/jenkins/scripts/VersionSelectorScript.groovy +++ b/jenkins/scripts/VersionSelectorScript.groovy @@ -29,6 +29,7 @@ def buildExclusions = [ [ /^centos7-64/, releaseType, lt(12) ], [ /debian8-x86/, anyType, gte(10) ], // 32-bit linux for <10 only [ /debian8/, anyType, gte(13) ], + [ /debian9/, anyType, gte(16) ], [ /^ubuntu1804/, anyType, lt(10) ], // probably temporary [ /^ubuntu1404-32/, anyType, gte(10) ], // 32-bit linux for <10 only [ /^ubuntu1404-64/, anyType, gte(12) ],