2015-12-21 14:18:48 +11:00
|
|
|
- job:
|
|
|
|
name: gate-python-barbicanclient-devstack-dsvm-oldstable
|
2016-03-14 12:58:43 -07:00
|
|
|
node: ubuntu-trusty
|
2015-12-21 14:18:48 +11:00
|
|
|
|
|
|
|
wrappers:
|
|
|
|
- build-timeout:
|
2016-02-06 11:47:12 +01:00
|
|
|
timeout: 70
|
2015-12-21 14:18:48 +11:00
|
|
|
- timestamps
|
|
|
|
|
|
|
|
builders:
|
|
|
|
- link-logs
|
|
|
|
- net-info
|
|
|
|
- devstack-checkout
|
|
|
|
- shell: |
|
|
|
|
#!/bin/bash -xe
|
|
|
|
export PYTHONUNBUFFERED=true
|
|
|
|
export ENABLED_SERVICES=barbican,tempest,keystone
|
|
|
|
export PROJECTS="openstack/barbican $PROJECTS"
|
|
|
|
export PROJECTS="openstack/python-barbicanclient $PROJECTS"
|
|
|
|
|
|
|
|
function pre_test_hook {
|
|
|
|
cd /opt/stack/new/barbican/functionaltests
|
|
|
|
./pre_test_hook.sh
|
|
|
|
}
|
|
|
|
export -f pre_test_hook
|
|
|
|
|
|
|
|
function post_test_hook {
|
|
|
|
cd /opt/stack/new/python-barbicanclient/functionaltests
|
|
|
|
./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
|
|
|
|
|
2015-02-19 16:38:29 -06:00
|
|
|
- job:
|
|
|
|
name: gate-python-barbicanclient-devstack-dsvm
|
2016-03-14 12:58:43 -07:00
|
|
|
node: ubuntu-trusty
|
2015-02-19 16:38:29 -06:00
|
|
|
|
|
|
|
wrappers:
|
|
|
|
- build-timeout:
|
2016-02-06 11:47:12 +01:00
|
|
|
timeout: 70
|
2015-02-19 16:38:29 -06:00
|
|
|
- timestamps
|
|
|
|
|
|
|
|
builders:
|
|
|
|
- link-logs
|
|
|
|
- net-info
|
|
|
|
- devstack-checkout
|
|
|
|
- shell: |
|
|
|
|
#!/bin/bash -xe
|
|
|
|
export PYTHONUNBUFFERED=true
|
|
|
|
export ENABLED_SERVICES=barbican,tempest,keystone
|
|
|
|
export PROJECTS="openstack/barbican $PROJECTS"
|
|
|
|
export PROJECTS="openstack/python-barbicanclient $PROJECTS"
|
|
|
|
|
2015-10-14 00:01:51 -04:00
|
|
|
function gate_hook {
|
|
|
|
$BASE/new/barbican/devstack/gate_hook.sh
|
2015-02-19 16:38:29 -06:00
|
|
|
}
|
2015-10-14 00:01:51 -04:00
|
|
|
export -f gate_hook
|
2015-02-19 16:38:29 -06:00
|
|
|
|
|
|
|
function post_test_hook {
|
|
|
|
cd /opt/stack/new/python-barbicanclient/functionaltests
|
|
|
|
./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
|