2015-04-14 22:36:24 +00:00
|
|
|
- job-template:
|
|
|
|
name: 'gate-dib-dsvm-functests-{node}'
|
|
|
|
node: '{node}'
|
|
|
|
|
|
|
|
builders:
|
|
|
|
- gerrit-git-prep
|
|
|
|
- shell: |
|
|
|
|
#!/bin/bash -eux
|
2015-04-28 16:52:38 +00:00
|
|
|
sudo apt-get install -y qemu-utils kpartx || sudo yum -y install qemu-img kpartx
|
2015-04-23 01:06:40 +00:00
|
|
|
git clone https://git.openstack.org/openstack/dib-utils ../dib-utils
|
|
|
|
export PATH=$PATH:$(pwd)/bin
|
|
|
|
export PATH=$PATH:$(pwd)/../dib-utils/bin
|
|
|
|
./tests/run_functests.sh
|
|
|
|
|
|
|
|
publishers:
|
|
|
|
- console-log
|