adc6a55d1a
We recently added bindep support to diskimage-builder, in doing so, we incorrectly looked in the wrong directory for the cloned project. Change-Id: I960a466351dabae1b75c2f31183fcdb7c43fe173 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
54 lines
1.5 KiB
YAML
54 lines
1.5 KiB
YAML
- job-template:
|
|
name: 'gate-dib-dsvm-functests-{node}{job-suffix}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 60
|
|
- timestamps
|
|
|
|
builders:
|
|
- shell: |
|
|
#!/bin/bash -eux
|
|
cd ~
|
|
|
|
/usr/zuul-env/bin/zuul-cloner --cache-dir /opt/git \
|
|
git://git.openstack.org \
|
|
openstack/diskimage-builder \
|
|
openstack/dib-utils
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
cd ~/openstack/diskimage-builder
|
|
/usr/local/jenkins/slave_scripts/install-distro-packages.sh
|
|
- shell: |
|
|
#!/bin/bash -eux
|
|
#
|
|
# We do things that might exceed the default 2GiB tmpfs, and
|
|
# use the larger mounted space.
|
|
cd ~
|
|
sudo mkdir /opt/dib_cache
|
|
sudo chown jenkins:jenkins /opt/dib_cache
|
|
export DIB_NO_TMPFS=1
|
|
export TMPDIR=/opt/dib_cache
|
|
|
|
virtualenv env
|
|
|
|
./env/bin/pip install $(pwd)/openstack/dib-utils
|
|
./env/bin/pip install $(pwd)/openstack/diskimage-builder
|
|
|
|
# TODO(pabelanger): Remove once we migrated to bindep
|
|
./openstack/diskimage-builder/tests/install_test_deps.sh
|
|
|
|
# activate the virtualenv so that any tools run by dib run
|
|
# using the python inside it
|
|
set +u
|
|
source ./env/bin/activate
|
|
set -u
|
|
./openstack/diskimage-builder/tests/run_functests.sh {tests}
|
|
set +u
|
|
deactivate
|
|
set -u
|
|
|
|
publishers:
|
|
- console-log
|