e600bdbac8
When performing image boot tests we run up against the 30min default timeout. We are pretty far in the test run at this point, so extenting the timeout to 60min should be enough. Change-Id: I0254e08e2bee35f4db5ec9deb185e328e67a6d5a
28 lines
702 B
YAML
28 lines
702 B
YAML
- job-template:
|
|
name: 'gate-dib-dsvm-functests-{node}'
|
|
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
|
|
|
|
export PATH=$PATH:$(pwd)/openstack/dib-utils/bin
|
|
export PATH=$PATH:$(pwd)/openstack/diskimage-builder/bin
|
|
|
|
./openstack/diskimage-builder/tests/install_test_deps.sh
|
|
./openstack/diskimage-builder/tests/run_functests.sh
|
|
|
|
publishers:
|
|
- console-log
|