Only build problems left are the compiler errors adam has tickets for

This commit is contained in:
Grant Limberg 2020-06-25 18:01:27 -07:00
parent 1eea80194b
commit 917cc58560
No known key found for this signature in database
GPG key ID: 2BA62CCABBB4095A

6
Jenkinsfile vendored
View file

@ -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",*/ ] def buster = ["debian-buster" , "debian-stretch"]
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"]
@ -438,7 +438,7 @@ def buildDebianNative() {
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)