From 39d4fadf90ac3ea63034494c2c0c4a9016ffb0ce Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Thu, 25 Jun 2020 11:56:32 -0700 Subject: [PATCH] add mips64le to debian native build lists --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 89f06b2e2..84c1c4788 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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"] }