4a61bc67f5
We have now some rather long job-template names, shorten them with replacing job-suffix with suffix. Before this change we had 1500 usages of job-suffix and 700 of just suffix. This change therefore unifies to one setting. Note that this does not change any job names at all, they are unchanged, it changes and shortens only the names of job-templates. Change-Id: I514df039a848d9f6619bca3adc05dfb84a761fc9
47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
- job-template:
|
|
name: '{pipeline}-vitrage-dsvm-{suite}-{node}{suffix}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 130
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
export PROJECTS="openstack/python-vitrageclient $PROJECTS"
|
|
export PROJECTS="openstack/vitrage $PROJECTS"
|
|
export PROJECTS="openstack/vitrage-dashboard $PROJECTS"
|
|
export PROJECTS="openstack/aodh $PROJECTS"
|
|
export ENABLED_SERVICES=tempest
|
|
|
|
export DEVSTACK_LOCAL_CONFIG="enable_plugin vitrage git://git.openstack.org/openstack/vitrage"
|
|
|
|
function pre_test_hook {{
|
|
source $BASE/new/vitrage/devstack/pre_test_hook.sh
|
|
}}
|
|
export -f pre_test_hook
|
|
|
|
function gate_hook {{
|
|
source $BASE/new/vitrage/devstack/gate_hook.sh
|
|
}}
|
|
export -f gate_hook
|
|
|
|
function post_test_hook {{
|
|
source $BASE/new/vitrage/devstack/post_test_hook.sh '{suite}'
|
|
}}
|
|
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
|