Looks like we have to turn off bullseye 32-bit ARM too

This commit is contained in:
Grant Limberg 2020-06-25 14:55:01 -07:00
parent 9aac1fc47f
commit c22b002226
No known key found for this signature in database
GPG key ID: 2BA62CCABBB4095A

6
Jenkinsfile vendored
View file

@ -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"]