258adfd506
Adding a new experimental job that builds the trove mysql guestagent image using tripleo tools. Eventually the trove image elements will be gated on this job. Change-Id: Ie27e5f67a8aa57129f5e71b4dc18ec11119df168
24 lines
633 B
YAML
24 lines
633 B
YAML
- job:
|
|
name: 'gate-trove-buildimage-mysql'
|
|
node: 'bare-precise'
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- gerrit-git-prep
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export DEST=/opt/stack
|
|
cd scripts
|
|
./redstack build-image mysql
|
|
mv $HOME/images/ubuntu_mysql/ubuntu_mysql.qcow2 $WORKSPACE/ubuntu_mysql.qcow2
|
|
|
|
publishers:
|
|
- scp:
|
|
site: 'tarballs.openstack.org'
|
|
files:
|
|
- source: 'ubuntu_mysql.qcow2'
|
|
target: 'trove/images/ubuntu_mysql.qcow2'
|
|
keep-hierarchy: false
|
|
copy-after-failure: false
|