mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-07 04:53:44 +02:00
reenable some temporarily disabled stuff
This commit is contained in:
parent
722a50f7be
commit
b482064a55
1 changed files with 7 additions and 18 deletions
25
Jenkinsfile
vendored
25
Jenkinsfile
vendored
|
@ -365,12 +365,12 @@ def packageStatic() {
|
||||||
|
|
||||||
def buildDebianNative() {
|
def buildDebianNative() {
|
||||||
def tasks = [:]
|
def tasks = [:]
|
||||||
def buster = ["debian-buster" , "debian-stretch"]
|
def debian = ["debian-buster" , "debian-stretch", "debian-sid", "debian-bullseye"]
|
||||||
def busterArchs = []
|
def debianArchs = []
|
||||||
if (params.BUILD_ALL) {
|
if (params.BUILD_ALL) {
|
||||||
busterArchs = ["s390x", "ppc64le", "i386", "armhf", "armel", "arm64", "amd64"]
|
debianArchs = ["s390x", "ppc64le", "i386", "armhf", "armel", "arm64", "amd64"]
|
||||||
} else {
|
} else {
|
||||||
busterArchs = ["amd64", "i386"]
|
debianArchs = ["amd64", "i386"]
|
||||||
}
|
}
|
||||||
|
|
||||||
def build = { distro, arch ->
|
def build = { distro, arch ->
|
||||||
|
@ -408,19 +408,8 @@ def buildDebianNative() {
|
||||||
return myNode
|
return myNode
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks << getTasks(buster, busterArchs, build)
|
tasks << getTasks(debian, debianArchs, build)
|
||||||
|
|
||||||
// 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"]
|
|
||||||
} else {
|
|
||||||
busterArchs = ["amd64", "i386"]
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks << getTasks(sid, sidArchs, build)
|
|
||||||
|
|
||||||
// bash is broken when running under QEMU-s390x on Xenial
|
// bash is broken when running under QEMU-s390x on Xenial
|
||||||
def xenial = ["ubuntu-xenial"]
|
def xenial = ["ubuntu-xenial"]
|
||||||
def xenialArchs = []
|
def xenialArchs = []
|
||||||
|
@ -429,7 +418,7 @@ def buildDebianNative() {
|
||||||
} else {
|
} else {
|
||||||
xenialArchs = ["i386", "amd64"]
|
xenialArchs = ["i386", "amd64"]
|
||||||
}
|
}
|
||||||
//tasks << getTasks(xenial, xenialArchs, build)
|
tasks << getTasks(xenial, xenialArchs, build)
|
||||||
|
|
||||||
def ubuntu = ["ubuntu-bionic", "ubuntu-eoan"]
|
def ubuntu = ["ubuntu-bionic", "ubuntu-eoan"]
|
||||||
def ubuntuArchs = []
|
def ubuntuArchs = []
|
||||||
|
|
Loading…
Add table
Reference in a new issue