blob: b7bcedca4131b6bf7c3288dfb9537ef0df26f733 [file] [log] [blame]
Filip Pytloun19376a82017-03-07 12:29:00 +01001def branches = [:]
2
3for (cluster in TEST_MODELS.split(',')) {
4 branches["${cluster}"] = {
5 build job: "test-salt-model-${cluster}", parameters: [
6 [$class: 'StringParameterValue', name: 'RECLASS_SYSTEM_GIT_URL', value: "${GERRIT_SCHEME}://${GERRIT_NAME}@${GERRIT_HOST}:${GERRIT_PORT}/${GERRIT_PROJECT}.git"],
7 [$class: 'StringParameterValue', name: 'RECLASS_SYSTEM_GIT_REF', value: GERRIT_REFSPEC]
8 ]
9 }
10}
11
12parallel branches