@@ -11,7 +11,7 @@ def parentImage = { release, docker_registry -> docker_registry - "https://" + '
1111def distributions = []
1212def images = null
1313def organization = null
14- def testing_flavour = null
14+ def build_flavour = null
1515
1616pipeline {
1717 agent none
@@ -57,7 +57,7 @@ pipeline {
5757 // (pbovbel) Read configuration from rosdistro. This should probably happen in some kind of Python
5858 def recipes_config = readYaml(file : recipes_yaml)
5959 organization = recipes_config[' common' ][' organization' ]
60- testing_flavour = recipes_config[' common' ][' testing_flavour ' ]
60+ build_flavour = recipes_config[' common' ][' build_flavour ' ]
6161 distributions = recipes_config[' os' ]. collect {
6262 os, distribution -> distribution }. flatten()
6363
@@ -99,7 +99,7 @@ pipeline {
9999 " --build-arg APT_REGION=${ params.apt_region} " +
100100 " --build-arg RELEASE_LABEL=${ params.release_label} " +
101101 " --build-arg RELEASE_TRACK=${ params.release_track} " +
102- " --build-arg FLAVOUR=${ testing_flavour } " +
102+ " --build-arg FLAVOUR=${ build_flavour } " +
103103 " --build-arg ORGANIZATION=${ organization} " +
104104 " --build-arg AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID " +
105105 " --build-arg AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY " +
@@ -162,7 +162,7 @@ pipeline {
162162 --apt-repo ${ params.apt_repo - 's3://'} \
163163 --release-track ${ params.release_track} \
164164 --release-label ${ params.release_label} \
165- --flavour ${ testing_flavour } \
165+ --flavour ${ build_flavour } \
166166 --organization ${ organization} \
167167 --docker-registry ${ params.docker_registry} \
168168 --rosdistro-path /rosdistro \
0 commit comments