28f8e09eaf
With the creation of the barbican-tempest-plugin repo, jobs need to add the repo to PROJECTS variable if they use the barbican plugin. Update barbicanclient and castellan. Change-Id: I3b3c662e37760f116fe482ecc9976a917b41af26
40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
YAML
- job:
|
|
name: gate-castellan-dsvm-functional
|
|
node: ubuntu-xenial
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 70
|
|
- 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"
|
|
export PROJECTS="openstack/barbican-tempest-plugin $PROJECTS"
|
|
export PROJECTS="openstack/castellan $PROJECTS"
|
|
export DEVSTACK_LOCAL_CONFIG="enable_plugin barbican git://git.openstack.org/openstack/barbican"
|
|
|
|
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
|