Grant Limberg 5 anni fa
parent
commit
7d388e0c79
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  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
 }