project-config/jenkins/jobs/diskimage-builder.yaml
Ian Wienand 53e90a7fee Remove dib-buildimage-debian-ironic post job
I noticed that this job was failing [1].  It was added with
If9363bff535f9d1fc9692767ac9194923030cfe7 , but there doesn't seem to
be anything published for it [2].

This would have to be fixed by pip-installing dib as done with
I5950c772b380cab926fd707cfed25db219a96f62 , but as it seems unused,
let's just remove it.

[1] http://logs.openstack.org/a1/a10a664a2a329ed881cb35faeed7c96c7239d2f4/post/dib-buildimage-debian-ironic/1e307f1/console.html
[2] http://tarballs.openstack.org/diskimage-builder/images/ironic-agent/debian-jessie/

Change-Id: I4ac3b94dcbc7e40e35525adf24a37d423f758116
2016-06-07 11:56:33 +10:00

39 lines
982 B
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
virtualenv env
./env/bin/pip install $(pwd)/openstack/dib-utils
./env/bin/pip install $(pwd)/openstack/diskimage-builder
./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