project-config/jenkins/jobs/smaug.yaml
Yuval Brik f83eb4b030 Use Smaug configuration from Smaug's repository
Instead of storing the configuration for gate jobs in
project-config, use the configuration from Smaug's repository, where
it could be updated according to changes.

Change-Id: I233e31cdce674007d385b905862549fdddd0b50f
2016-06-23 09:27:35 +00:00

50 lines
1.4 KiB
YAML

- job-template:
name: '{pipeline}-smaug-dsvm-fullstack{job-suffix}'
node: '{node}'
wrappers:
- build-timeout:
timeout: 130
- timestamps
builders:
- print-template-name:
template-name: "{template-name}"
- link-logs
- net-info
- devstack-checkout
- shell: |
#!/bin/bash -xe
export PYTHONUNBUFFERED=true
export DEVSTACK_GATE_TEMPEST=0
export DEVSTACK_GATE_NEUTRON=1
export DEVSTACK_GATE_INSTALL_TESTONLY=1
export BRANCH_OVERRIDE={branch-override}
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
fi
export PROJECTS="openstack/smaug $PROJECTS"
export DEVSTACK_GATE_SETTINGS=$BASE/new/smaug/devstack/devstackgaterc
function gate_hook {{
bash -xe $BASE/new/smaug/smaug/tests/contrib/gate_hook.sh fullstack
}}
export -f gate_hook
function post_test_hook {{
bash -xe $BASE/new/smaug/smaug/tests/contrib/post_test_hook.sh fullstack
}}
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