project-config/jenkins/jobs/group-based-policy.yaml
Sumit Naiksatam d14fd2463f Add missing projects to GBP job
The job was recently merged but was missing projects,
hence the job is failing. Those projects are being
added here.

Change-Id: I0881bd8d2857c9aba21f48546c055d2c978b0286
2015-03-15 00:26:12 -07:00

49 lines
1.6 KiB
YAML

- job-template:
name: '{pipeline}-group-based-policy-dsvm-functional{branch-designator}'
node: '{node}'
wrappers:
- build-timeout:
timeout: 125
- timestamps
builders:
- link-logs
- net-info
- devstack-checkout
- shell: |
#!/bin/bash -xe
export PYTHONUNBUFFERED=true
export DEVSTACK_GATE_UNSTACK=1
export DEVSTACK_GATE_TIMEOUT=120
export DEVSTACK_GATE_TEMPEST=0
export DEVSTACK_GATE_EXERCISES=0
export DEVSTACK_GATE_NEUTRON=1
export DEVSTACK_GATE_INSTALL_TESTONLY=1
export PROJECTS="stackforge/group-based-policy $PROJECTS"
export PROJECTS="stackforge/group-based-policy-automation $PROJECTS"
export PROJECTS="stackforge/group-based-policy-ui $PROJECTS"
export PROJECTS="stackforge/python-group-based-policy-client $PROJECTS"
export BRANCH_OVERRIDE={branch-override}
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
fi
function gate_hook {{
bash -xe $BASE/new/group-based-policy/gbpservice/tests/contrib/gate_hook.sh dsvm-functional
}}
export -f gate_hook
function post_test_hook {{
bash -xe $BASE/new/group-based-policy/gbpservice/tests/contrib/post_test_hook.sh dsvm-functional
}}
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