cbd1a494f1
Add python-zunclient to zun dsvm Change-Id: I8b4e4fc25f53836c074a22421844ee52c6a80433
41 lines
1.0 KiB
YAML
41 lines
1.0 KiB
YAML
- job:
|
|
name: 'gate-higgins-devstack-dsvm'
|
|
node: ubuntu-xenial
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 70
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TEMPEST=0
|
|
export DEVSTACK_GATE_NEUTRON=1
|
|
|
|
export PROJECTS="openstack/higgins $PROJECTS"
|
|
export PROJECTS="openstack/python-zunclient $PROJECTS"
|
|
export DEVSTACK_LOCAL_CONFIG="enable_plugin higgins git://git.openstack.org/openstack/higgins"
|
|
|
|
# Keep localrc to be able to set some vars in post_test_hook
|
|
export KEEP_LOCALRC=1
|
|
|
|
function gate_hook {
|
|
cd /opt/stack/new/higgins/
|
|
./devstack/gate_hook.sh
|
|
}
|
|
export -f gate_hook
|
|
|
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
./safe-devstack-vm-gate-wrap.sh
|
|
|
|
|
|
publishers:
|
|
- devstack-logs
|
|
- console-log
|