Grant Limberg пре 5 година
родитељ
комит
7d388e0c79
1 измењених фајлова са 2 додато и 1 уклоњено
  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
 }