mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-06 20:43:44 +02:00
temporarily disable builds of Debian Stretch, FreeBSD, Ubuntu Bionic AMD64, and Ubuntu Xenial
This commit is contained in:
parent
9009a864ab
commit
52b619b38f
1 changed files with 4 additions and 4 deletions
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
|
@ -23,7 +23,7 @@ pipeline {
|
||||||
tasks << buildCentosNative()
|
tasks << buildCentosNative()
|
||||||
tasks << buildMacOS()
|
tasks << buildMacOS()
|
||||||
tasks << buildWindows()
|
tasks << buildWindows()
|
||||||
tasks << buildFreeBSD()
|
// tasks << buildFreeBSD()
|
||||||
|
|
||||||
parallel tasks
|
parallel tasks
|
||||||
}
|
}
|
||||||
|
@ -367,7 +367,7 @@ def packageStatic() {
|
||||||
|
|
||||||
def buildDebianNative() {
|
def buildDebianNative() {
|
||||||
def tasks = [:]
|
def tasks = [:]
|
||||||
def buster = ["debian-buster", "debian-stretch", "debian-bullseye", "debian-sid"]
|
def buster = ["debian-buster", /*"debian-stretch",*/ "debian-bullseye", "debian-sid"]
|
||||||
def busterArchs = []
|
def busterArchs = []
|
||||||
if (params.BUILD_ALL) {
|
if (params.BUILD_ALL) {
|
||||||
busterArchs = ["s390x", "ppc64le", "i386", "armhf", "armel", "arm64", "amd64"]
|
busterArchs = ["s390x", "ppc64le", "i386", "armhf", "armel", "arm64", "amd64"]
|
||||||
|
@ -416,14 +416,14 @@ 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 = []
|
||||||
if (params.BUILD_ALL == true) {
|
if (params.BUILD_ALL == true) {
|
||||||
ubuntuArchs = ["i386", "amd64", "armhf", "arm64", "ppc64le", "s390x"]
|
ubuntuArchs = ["i386", "amd64", "armhf", "arm64", "ppc64le", "s390x"]
|
||||||
} else {
|
} else {
|
||||||
ubuntuArchs = ["i386", "amd64"]
|
ubuntuArchs = ["i386" /*, "amd64"*/]
|
||||||
}
|
}
|
||||||
tasks << getTasks(ubuntu, ubuntuArchs, build)
|
tasks << getTasks(ubuntu, ubuntuArchs, build)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue