blob: 453dc752ab94ed0bf90a39bb913ac54a2cc734c1 (
plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
---
- project:
name: integration-project-view
project-name: integration
views:
- project-view
- project:
name: integration-info
project-name: integration
jobs:
- gerrit-info-yaml-verify
build-node: centos7-builder-2c-1g
project: integration
branch: master
- project:
name: integration-verify-python
project-name: integration
project: integration
stream:
- 'master':
branch: 'master'
- 'elalto':
branch: 'elalto'
mvn-settings: 'integration-settings'
build-node: 'centos7-builder-4c-4g'
subproject:
- 'test-vcpe':
path: 'test/vcpe'
pattern: 'test/vcpe/**'
jobs:
- '{project-name}-{stream}-{subproject}-verify-python'
- project:
name: integration-verify-vagrantfile
project-name: 'integration'
project: 'integration'
stream:
- 'master':
branch: 'master'
jobs:
- '{project-name}-{stream}-verify-vagrantfile'
- project:
name: integration-verify-golang
project-name: 'integration'
project: 'integration'
golangver: 'golang112'
mvn-settings: 'integration-settings'
archive-artifacts: ''
build-node: ubuntu1604-builder-2c-1g
jobs:
- '{project-name}-{stream}-verify-golang':
script: '{build_script}'
path: 'test/security/k8s'
pattern: '{path}/**'
stream:
- 'master':
branch: 'master'
build_script: |
#!/bin/bash
set -ex # Fail build if any setup step fails
cd test/security/k8s
make test
|