diff options
author | Luc Provoost <luc.provoost@intel.com> | 2021-03-16 19:57:27 +0100 |
---|---|---|
committer | Luc Provoost <luc.provoost@intel.com> | 2021-03-16 19:59:53 +0100 |
commit | f7bcaf5e3cb4dccb34615739687a369c92956768 (patch) | |
tree | 9799509fa06afadb4c22d28f6b36354e14ae1990 /jjb/samplevnf | |
parent | e418f52210a089471c6407f179776c0d2e10bc51 (diff) |
Pass parameters to build-image.sh
Passing the qcow2 image details as a parameter to build-image.sh
Signed-off-by: Luc Provoost <luc.provoost@intel.com>
Change-Id: Ie32164c8e3c98ddd0651e274c68feab265b24a48
Diffstat (limited to 'jjb/samplevnf')
-rw-r--r-- | jjb/samplevnf/samplevnf.yaml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/jjb/samplevnf/samplevnf.yaml b/jjb/samplevnf/samplevnf.yaml index eae95dbcf..285680532 100644 --- a/jjb/samplevnf/samplevnf.yaml +++ b/jjb/samplevnf/samplevnf.yaml @@ -11,13 +11,13 @@ stream: - master: branch: '{stream}' - gs-pathname: '' - docker-tag: 'latest' + gs-pathname: 'artifacts.opnfv.org/samplevnf/images' + tag: 'latest' disabled: false - jerma: branch: 'stable/{stream}' - gs-pathname: '/{stream}' - docker-tag: 'stable' + gs-pathname: 'artifacts.opnfv.org/samplevnf/images' + tag: '{stream}' disabled: false - job-template: @@ -55,7 +55,7 @@ builders: - shell: | cd $WORKSPACE/rapidvm/dib - bash build-image.sh + bash build-image.sh -g {gs-pathname} -i {tag} - job-template: name: 'rapid-prox-verify-{stream}' @@ -101,4 +101,4 @@ sudo pip install tox-pip-version cd $WORKSPACE && tox -e docs cd $WORKSPACE/rapidvm/dib - bash verify-image.sh -v + bash build-image.sh -g {gs-pathname} -i {tag} -v |