@@ -11,7 +11,7 @@ def parentImage = { release, docker_registry -> docker_registry - "https://" + '
11
11
def distributions = []
12
12
def images = null
13
13
def organization = null
14
- def testing_flavour = null
14
+ def build_flavour = null
15
15
16
16
pipeline {
17
17
agent none
@@ -57,7 +57,7 @@ pipeline {
57
57
// (pbovbel) Read configuration from rosdistro. This should probably happen in some kind of Python
58
58
def recipes_config = readYaml(file : recipes_yaml)
59
59
organization = recipes_config[' common' ][' organization' ]
60
- testing_flavour = recipes_config[' common' ][' testing_flavour ' ]
60
+ build_flavour = recipes_config[' common' ][' build_flavour ' ]
61
61
distributions = recipes_config[' os' ]. collect {
62
62
os, distribution -> distribution }. flatten()
63
63
@@ -99,7 +99,7 @@ pipeline {
99
99
" --build-arg APT_REGION=${ params.apt_region} " +
100
100
" --build-arg RELEASE_LABEL=${ params.release_label} " +
101
101
" --build-arg RELEASE_TRACK=${ params.release_track} " +
102
- " --build-arg FLAVOUR=${ testing_flavour } " +
102
+ " --build-arg FLAVOUR=${ build_flavour } " +
103
103
" --build-arg ORGANIZATION=${ organization} " +
104
104
" --build-arg AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID " +
105
105
" --build-arg AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY " +
@@ -162,7 +162,7 @@ pipeline {
162
162
--apt-repo ${ params.apt_repo - 's3://'} \
163
163
--release-track ${ params.release_track} \
164
164
--release-label ${ params.release_label} \
165
- --flavour ${ testing_flavour } \
165
+ --flavour ${ build_flavour } \
166
166
--organization ${ organization} \
167
167
--docker-registry ${ params.docker_registry} \
168
168
--rosdistro-path /rosdistro \
0 commit comments