51 lines
1.2 KiB
YAML
51 lines
1.2 KiB
YAML
- job-template:
|
|
name: 'noop-check-communication'
|
|
node: '{node}'
|
|
|
|
builders:
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
echo "Hello world, this is the {vendor} Testing System"
|
|
- link-logs
|
|
|
|
publishers:
|
|
- devstack-logs
|
|
- console-log
|
|
|
|
|
|
- job-template:
|
|
name: 'dsvm-tempest-full'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- timeout:
|
|
timeout: 185 # Timeout in *minutes*
|
|
fail: true # A job run that exceeds the timeout will cause a failure
|
|
- timestamps
|
|
|
|
builders:
|
|
- net-info
|
|
# - devstack-checkout
|
|
- devstack-checkout-http
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
if [ -z $ZUUL_PROJECT ]; then
|
|
export ZUUL_PROJECT=openstack-dev/sandbox
|
|
fi
|
|
if [ -z $ZUUL_BRANCH ]; then
|
|
export ZUUL_BRANCH=master
|
|
fi
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TIMEOUT=180
|
|
export DEVSTACK_GATE_TEMPEST=1
|
|
|
|
export DEVSTACK_GATE_TEMPEST_REGEX="volume.api"
|
|
|
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
./safe-devstack-vm-gate-wrap.sh
|
|
- link-logs
|
|
|
|
publishers:
|
|
- devstack-logs
|
|
- console-log
|