2015-09-29 14:44:22 -04:00
|
|
|
- job:
|
|
|
|
name: gate-castellan-dsvm-functional
|
2016-03-14 12:58:43 -07:00
|
|
|
node: ubuntu-trusty
|
2015-09-29 14:44:22 -04:00
|
|
|
|
|
|
|
wrappers:
|
|
|
|
- build-timeout:
|
2016-02-07 09:16:13 +01:00
|
|
|
timeout: 70
|
2015-09-29 14:44:22 -04:00
|
|
|
- timestamps
|
|
|
|
|
|
|
|
builders:
|
|
|
|
- link-logs
|
|
|
|
- net-info
|
|
|
|
- devstack-checkout
|
|
|
|
- shell: |
|
|
|
|
#!/bin/bash -xe
|
|
|
|
export PYTHONUNBUFFERED=true
|
|
|
|
export ENABLED_SERVICES=tempest,keystone
|
|
|
|
export PROJECTS="openstack/barbican $PROJECTS"
|
|
|
|
export PROJECTS="openstack/python-barbicanclient $PROJECTS"
|
2015-10-06 13:48:21 -04:00
|
|
|
export PROJECTS="openstack/castellan $PROJECTS"
|
2015-10-15 18:58:26 +05:30
|
|
|
export DEVSTACK_LOCAL_CONFIG="enable_plugin barbican git://git.openstack.org/openstack/barbican"
|
2015-09-29 14:44:22 -04:00
|
|
|
|
|
|
|
function gate_hook {
|
|
|
|
$BASE/new/castellan/castellan/tests/contrib/gate_hook.sh
|
|
|
|
}
|
|
|
|
export -f gate_hook
|
|
|
|
|
|
|
|
function post_test_hook {
|
|
|
|
$BASE/new/castellan/castellan/tests/contrib/post_test_hook.sh
|
|
|
|
}
|
|
|
|
export -f post_test_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
|