
This change uses DEVSTACK_GATE_QPID=1 to setup qpid, changes the password to set a rabbit like password, and removes the unneeded stuffs. Change-Id: Ic984e1b962e33da7ec02ca45e151dba8c6c49d2c
115 lines
3.6 KiB
YAML
115 lines
3.6 KiB
YAML
- job-template:
|
|
name: '{pipeline}-{injectedlib}-dsvm-{name}{branch-designator}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 95
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TIMEOUT=95
|
|
export PROJECTS="{injectedrepo} $PROJECTS"
|
|
export BRANCH_OVERRIDE={branch-override}
|
|
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
|
|
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
|
|
fi
|
|
|
|
function gate_hook {{
|
|
cd /opt/stack/new/$(basename {injectedrepo})
|
|
remaining_time
|
|
timeout -s 9 ${{REMAINING_TIME}}m ./tools/run_cross_tests.sh /opt/stack/new/{name} py27
|
|
}}
|
|
export -f gate_hook
|
|
|
|
function post_test_hook {{
|
|
cd /opt/stack/new/{name}
|
|
mv nose_results.html $WORKSPACE/logs
|
|
mv testr_results.html.gz $WORKSPACE/logs
|
|
mv .testrepository/tmp* $WORKSPACE/logs
|
|
mv subunit_log.txt.gz $WORKSPACE/logs
|
|
}}
|
|
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-template:
|
|
name: '{pipeline}-oslo.messaging-dsvm-functional-{driver}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 95
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TIMEOUT=90
|
|
export DEVSTACK_GATE_TEMPEST=0
|
|
export DEVSTACK_GATE_EXERCISES=0
|
|
DEVSTACK_LOCAL_CONFIG="${{DEVSTACK_LOCAL_CONFIG}}QPID_USERNAME=stackqpid\n"
|
|
DEVSTACK_LOCAL_CONFIG="${{DEVSTACK_LOCAL_CONFIG}}QPID_PASSWORD=secretqpid\n"
|
|
DEVSTACK_LOCAL_CONFIG="${{DEVSTACK_LOCAL_CONFIG}}RABBIT_USERID=stackrabbit\n"
|
|
DEVSTACK_LOCAL_CONFIG="${{DEVSTACK_LOCAL_CONFIG}}RABBIT_PASSWORD=secretrabbit\n"
|
|
case '{driver}' in
|
|
qpid)
|
|
export DEVSTACK_GATE_QPID=1
|
|
;;
|
|
amqp1)
|
|
export DEVSTACK_GATE_QPID=1
|
|
DEVSTACK_LOCAL_CONFIG="${{DEVSTACK_LOCAL_CONFIG}}RPC_MESSAGING_PROTOCOL=AMQP1\n"
|
|
;;
|
|
esac
|
|
export DEVSTACK_LOCAL_CONFIG
|
|
|
|
function post_test_hook {{
|
|
cd /opt/stack/new/oslo.messaging
|
|
sudo -H -u stack tox -e py27-func-{driver}
|
|
}}
|
|
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:
|
|
- test-results
|
|
- devstack-logs
|
|
- console-log
|
|
|
|
# NOTE(dhellmann): This job group is not used, but I retained it as an
|
|
# example of properly using the template defined above.
|
|
#
|
|
# - job-group:
|
|
# name: oslotest-cross-test
|
|
#
|
|
# injectedlib: oslotest
|
|
# injectedrepo: openstack/oslotest
|
|
#
|
|
# jobs:
|
|
# - '{pipeline}-{injectedlib}-dsvm-{name}{branch-designator}':
|
|
# pipeline: check
|
|
# node: 'devstack-precise || devstack-trusty'
|
|
# branch-designator: ''
|
|
# branch-override: default
|
|
# - '{pipeline}-{injectedlib}-dsvm-{name}{branch-designator}':
|
|
# pipeline: gate
|
|
# node: 'devstack-precise || devstack-trusty'
|
|
# branch-designator: ''
|
|
# branch-override: default
|