add mips64le to debian native build lists

This commit is contained in:
Grant Limberg 2020-06-25 11:56:32 -07:00
parent 4968afb89a
commit 39d4fadf90
No known key found for this signature in database
GPG key ID: 2BA62CCABBB4095A

4
Jenkinsfile vendored
View file

@ -370,7 +370,7 @@ def buildDebianNative() {
def buster = ["debian-buster", /*"debian-stretch",*/ "debian-bullseye"]
def busterArchs = []
if (params.BUILD_ALL) {
busterArchs = ["s390x", "ppc64le", "i386", "armhf", "armel", "arm64", "amd64"]
busterArchs = ["s390x", "ppc64le", "i386", "armhf", "armel", "arm64", "amd64", "mips64le"]
} else {
busterArchs = ["amd64", "i386"]
}
@ -416,7 +416,7 @@ def buildDebianNative() {
def sid = ["debian-sid"]
def sidArchs = []
if (params.BUILD_ALL) {
busterArchs = ["s390x", "ppc64le", "i386", /*"armhf", "armel",*/ "arm64", "amd64"]
busterArchs = ["s390x", "ppc64le", "i386", /*"armhf", "armel",*/ "arm64", "amd64", "mips64le"]
} else {
busterArchs = ["amd64", "i386"]
}