From e8648d1885397ce6a52ff350c2aac66522226ddf Mon Sep 17 00:00:00 2001
From: Martin Hierholzer <martin.hierholzer@desy.de>
Date: Wed, 20 Feb 2019 10:49:48 +0100
Subject: [PATCH] allow overriding the list of builds

---
 vars/buildTestDeploy.groovy | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/vars/buildTestDeploy.groovy b/vars/buildTestDeploy.groovy
index 125e0e3..48fb3c0 100644
--- a/vars/buildTestDeploy.groovy
+++ b/vars/buildTestDeploy.groovy
@@ -5,15 +5,14 @@
 ***********************************************************************************************************************/
 
 // This is the function called from the .jenkinsfile
-def call(ArrayList<String> dependencyList, String gitUrl='') {
-
-  // List of builds to be run. Format must be "<docker_image_name>-<cmake_build_type>"
-  def builds = [ 'xenial-Debug',
-                 'xenial-Release',
-                 'bionic-Debug',
-                 'bionic-Release',
-                 'tumbleweed-Debug',
-                 'tumbleweed-Release' ]
+// The last optional argument is the list of builds to be run. Format must be "<docker_image_name>-<cmake_build_type>"
+def call(ArrayList<String> dependencyList, String gitUrl='',
+         ArrayList<String> builds=['xenial-Debug',
+                                   'xenial-Release',
+                                   'bionic-Debug',
+                                   'bionic-Release',
+                                   'tumbleweed-Debug',
+                                   'tumbleweed-Release']) {
 
   // only keep builds which exist for all dependencies
   script {
-- 
GitLab