Explorar el Código

fix mac jenkins

Grant Limberg hace 5 años
padre
commit
7d388e0c79
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      Jenkinsfile

+ 2 - 1
Jenkinsfile

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