fix mac jenkins

This commit is contained in:
Grant Limberg 2020-06-16 17:34:58 -07:00
parent 4036657e32
commit 7d388e0c79

3
Jenkinsfile vendored
View file

@ -38,7 +38,7 @@ pipeline {
} }
def buildMacOS() { def buildMacOS() {
tasks << getTasks({ -> tasks << getTasks(['mac'],['amd64'], {unused1, unused2 ->
def myNode = { def myNode = {
node ('mac') { node ('mac') {
dir("build") { dir("build") {
@ -48,6 +48,7 @@ def buildMacOS() {
} }
} }
} }
return myNode
}) })
return tasks return tasks
} }