From c22b0022267cbc36925ee335dcff0c43310d0cd4 Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Thu, 25 Jun 2020 14:55:01 -0700 Subject: [PATCH] Looks like we have to turn off bullseye 32-bit ARM too --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 74cb0df57..bac2193a9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -367,7 +367,7 @@ def packageStatic() { def buildDebianNative() { def tasks = [:] - def buster = ["debian-buster", /*"debian-stretch",*/ "debian-bullseye"] + def buster = ["debian-buster" /*, "debian-stretch",*/ ] def busterArchs = [] if (params.BUILD_ALL) { busterArchs = ["s390x", "ppc64le", "i386", "armhf", "armel", "arm64", "amd64", "mips64le"] @@ -412,8 +412,8 @@ def buildDebianNative() { tasks << getTasks(buster, busterArchs, build) - // 32-bit arm and CMake don't get along right now on Sid - def sid = ["debian-sid"] + // 32-bit arm and CMake don't get along right now on Sid/Bullseye + def sid = ["debian-sid", "debian-bullseye"] def sidArchs = [] if (params.BUILD_ALL) { busterArchs = ["s390x", "ppc64le", "i386", /*"armhf", "armel",*/ "arm64", "amd64", "mips64le"]