Skip to content
Snippets Groups Projects
Commit e8648d18 authored by Martin Christoph Hierholzer's avatar Martin Christoph Hierholzer
Browse files

allow overriding the list of builds

parent 712e77c3
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment