2084c094a4
* Move Mistral subprojects to openstack namespace * Adding notifications for mistral-dashboard project to the team channel Approved commit to governance repository: https://review.openstack.org/#/c/170225/ Depends-On: I5d0e877903c3f55ce2330e301b27da9435f677c5 Change-Id: If4299cdd061a5d689a5d16e91c4d37d27e1a299a
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
- job:
|
|
name: gate-mistral-devstack-dsvm
|
|
node: 'devstack-precise || devstack-trusty'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 65
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TIMEOUT=60
|
|
export ENABLED_SERVICES=mistral,tempest
|
|
export PROJECTS="openstack/mistral $PROJECTS"
|
|
export PROJECTS="openstack/mistral-dashboard $PROJECTS"
|
|
export PROJECTS="openstack/python-mistralclient $PROJECTS"
|
|
|
|
function pre_test_hook {
|
|
cd /opt/stack/new/mistral/functionaltests
|
|
./pre_test_hook.sh
|
|
}
|
|
export -f pre_test_hook
|
|
|
|
function post_test_hook {
|
|
cd /opt/stack/new/mistral/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
|