Use job-template for gate-trove-buildimage jobs

Use job-template for gate-trove-buildimage jobs to enable building
trove images for multiple datastore types, and not just mysql.

Change-Id: I1bb10abb6d762d030c69559c20349f53d0f666a8
This commit is contained in:
Nikhil Manchanda 2014-06-12 07:54:41 -07:00
parent 4901723491
commit c897a3ac79
2 changed files with 10 additions and 6 deletions

View File

@ -1146,6 +1146,10 @@
datastore: 'mysql'
- 'gate-trove-functional-dsvm-{datastore}':
datastore: 'mongodb'
- 'gate-trove-buildimage-{datastore}':
datastore: 'mysql'
- 'gate-trove-buildimage-{datastore}':
datastore: 'mongodb'
- '{name}-tox-doc-{envlist}':
envlist: publishdocs

View File

@ -1,5 +1,5 @@
- job:
name: 'gate-trove-buildimage-mysql'
- job-template:
name: 'gate-trove-buildimage-{datastore}'
node: 'bare-precise'
builders:
@ -13,15 +13,15 @@
export DEST=/opt/trove-image-build
export KEY_DIR=`pwd`/scripts/files/keys
cd scripts
./redstack build-image mysql
mv $HOME/images/ubuntu_mysql/ubuntu_mysql.qcow2 $WORKSPACE/ubuntu_mysql.qcow2
./redstack build-image {datastore}
mv $HOME/images/ubuntu_{datastore}/ubuntu_{datastore}.qcow2 $WORKSPACE/{datastore}.qcow2
publishers:
- scp:
site: 'tarballs.openstack.org'
files:
- source: 'ubuntu_mysql.qcow2'
target: 'tarballs/trove/images/ubuntu_mysql.qcow2'
- source: '{datastore}.qcow2'
target: 'tarballs/trove/images/ubuntu'
keep-hierarchy: false
copy-after-failure: false
- console-log