72ad386cd5
Before calling higgins gate_hook.sh, we need to clone higgins repo first. Change-Id: Iab6bfd160cfc61cc59e9ce9e1d7e5244eb3afa8d
40 lines
997 B
YAML
40 lines
997 B
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 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
|