-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexamples.yaml
executable file
·49 lines (42 loc) · 1.43 KB
/
examples.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
- job-template:
name: 'noop-check-communication'
node: '{node}'
builders:
- shell: |
#!/bin/bash -xe
echo "Hello world, this is the {vendor} Testing System"
#exit -1
- link-logs # In macros.yaml from os-ext-testing
publishers:
- review-devstack-logs # In macros.yaml from os-ext-testing
- review-console-log # In macros.yaml from os-ext-testing
- 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
- shell: |
#!/bin/bash -xe
if [ -z $ZUUL_PROJECT ]; then
export ZUUL_PROJECT=openstack-dev/ci-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 RE_EXEC=true
ulimit -Ha
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
./safe-devstack-vm-gate-wrap.sh
- link-logs # In macros.yaml from os-ext-testing
publishers:
- devstack-logs # In macros.yaml from os-ext-testing
- console-log # In macros.yaml from os-ext-testing