2013-11-19 01:03:53 -05:00
|
|
|
- job:
|
2014-05-22 14:53:27 -05:00
|
|
|
name: 'gate-solum-devstack-dsvm'
|
2014-06-23 17:05:17 -07:00
|
|
|
node: 'devstack-precise || devstack-trusty'
|
2013-11-19 01:03:53 -05:00
|
|
|
|
2014-05-22 14:53:27 -05:00
|
|
|
wrappers:
|
2014-05-27 14:51:16 -07:00
|
|
|
- build-timeout:
|
2014-05-22 14:53:27 -05:00
|
|
|
timeout: 65
|
|
|
|
- timestamps
|
|
|
|
|
|
|
|
builders:
|
|
|
|
- link-logs
|
|
|
|
- net-info
|
|
|
|
- devstack-checkout
|
|
|
|
- shell: |
|
|
|
|
#!/bin/bash -xe
|
|
|
|
export PYTHONUNBUFFERED=true
|
|
|
|
export DEVSTACK_GATE_TIMEOUT=60
|
|
|
|
export DEVSTACK_GATE_NEUTRON=1
|
2015-03-24 13:42:36 -05:00
|
|
|
export ENABLED_SERVICES=solum,solum-api,solum-conductor,solum-deployer,solum-worker,tempest,zaqar,barbican,mistral
|
2014-05-22 14:53:27 -05:00
|
|
|
export PROJECTS="stackforge/solum $PROJECTS"
|
2014-07-31 12:57:49 -07:00
|
|
|
# TODO(ravips): Workaround until barbican, mistral gets into devstack
|
|
|
|
export PROJECTS="openstack/barbican stackforge/mistral $PROJECTS"
|
2014-05-22 14:53:27 -05:00
|
|
|
|
|
|
|
function pre_test_hook {
|
|
|
|
cd /opt/stack/new/solum/functionaltests
|
|
|
|
./pre_test_hook.sh
|
|
|
|
}
|
|
|
|
export -f pre_test_hook
|
|
|
|
|
2014-07-16 16:25:32 +00:00
|
|
|
function gate_hook {
|
|
|
|
cd /opt/stack/new/solum/functionaltests
|
|
|
|
./gate_hook.sh
|
|
|
|
}
|
|
|
|
export -f gate_hook
|
|
|
|
|
2014-05-22 14:53:27 -05:00
|
|
|
function post_test_hook {
|
|
|
|
cd /opt/stack/new/solum/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
|
|
|
|
|
|
|
|
- job:
|
2015-03-24 13:42:36 -05:00
|
|
|
name: 'gate-solum-devstack-dsvm-centos7'
|
|
|
|
node: 'devstack-centos7'
|
2014-05-22 14:53:27 -05:00
|
|
|
|
2013-11-19 01:03:53 -05:00
|
|
|
wrappers:
|
2014-05-27 14:51:16 -07:00
|
|
|
- build-timeout:
|
2013-12-19 15:04:21 -08:00
|
|
|
timeout: 65
|
2013-11-19 01:03:53 -05:00
|
|
|
- timestamps
|
|
|
|
|
|
|
|
builders:
|
2014-03-11 15:46:51 -07:00
|
|
|
- link-logs
|
2014-03-19 00:06:03 +00:00
|
|
|
- net-info
|
2013-11-19 01:03:53 -05:00
|
|
|
- devstack-checkout
|
|
|
|
- shell: |
|
|
|
|
#!/bin/bash -xe
|
|
|
|
export PYTHONUNBUFFERED=true
|
2013-12-19 15:04:21 -08:00
|
|
|
export DEVSTACK_GATE_TIMEOUT=60
|
2014-05-02 08:06:16 +05:30
|
|
|
export DEVSTACK_GATE_NEUTRON=1
|
2015-03-24 13:42:36 -05:00
|
|
|
export ENABLED_SERVICES=solum,solum-api,solum-conductor,solum-deployer,solum-worker,tempest,zaqar,barbican,mistral
|
2014-05-06 13:31:33 +10:00
|
|
|
export PROJECTS="stackforge/solum $PROJECTS"
|
2014-07-31 12:57:49 -07:00
|
|
|
# TODO(ravips): Workaround until barbican, mistral gets into devstack
|
|
|
|
export PROJECTS="openstack/barbican stackforge/mistral $PROJECTS"
|
2013-11-19 01:03:53 -05:00
|
|
|
|
2013-12-04 18:37:01 -05:00
|
|
|
function pre_test_hook {
|
2014-01-08 09:06:00 +05:30
|
|
|
cd /opt/stack/new/solum/functionaltests
|
|
|
|
./pre_test_hook.sh
|
2013-12-04 18:37:01 -05:00
|
|
|
}
|
2013-11-19 01:03:53 -05:00
|
|
|
export -f pre_test_hook
|
|
|
|
|
2014-07-16 16:25:32 +00:00
|
|
|
function gate_hook {
|
|
|
|
cd /opt/stack/new/solum/functionaltests
|
|
|
|
./gate_hook.sh
|
|
|
|
}
|
|
|
|
export -f gate_hook
|
|
|
|
|
2013-12-10 14:48:12 -05:00
|
|
|
function post_test_hook {
|
|
|
|
cd /opt/stack/new/solum/functionaltests
|
2014-01-08 09:06:00 +05:30
|
|
|
./post_test_hook.sh
|
2013-12-10 14:48:12 -05:00
|
|
|
}
|
|
|
|
export -f post_test_hook
|
|
|
|
|
2013-11-19 01:03:53 -05:00
|
|
|
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
|