Merge "Build integration-verify-golang job on Ubuntu 18.04 minion"
[ci-management.git] / jjb / integration / integration.yaml
1 ---
2 - project:
3     name: integration-project-view
4     project-name: integration
5     views:
6       - project-view
7
8 - project:
9     name: integration-info
10     project-name: integration
11     jobs:
12       - gerrit-info-yaml-verify
13     build-node: centos7-builder-2c-1g
14     project: integration
15     branch: master
16
17 - project:
18     name: integration-verify-python
19     project-name: integration
20     project: integration
21     stream:
22       - 'master':
23           branch: 'master'
24       - 'elalto':
25           branch: 'elalto'
26     mvn-settings: 'integration-settings'
27     build-node: 'centos7-builder-4c-4g'
28     subproject:
29       - 'test-vcpe':
30           path: 'test/vcpe'
31           pattern: 'test/vcpe/**'
32     jobs:
33       - '{project-name}-{stream}-{subproject}-verify-python'
34
35 - project:
36     name: integration-verify-vagrantfile
37     project-name: 'integration'
38     project: 'integration'
39     stream:
40       - 'master':
41           branch: 'master'
42     jobs:
43       - '{project-name}-{stream}-verify-vagrantfile'
44
45 - project:
46     name: integration-verify-golang
47     project-name: 'integration'
48     project: 'integration'
49     golangver: 'golang112'
50     mvn-settings: 'integration-settings'
51     archive-artifacts: ''
52     build-node: ubuntu1804-builder-4c-4g
53     jobs:
54       - '{project-name}-{stream}-verify-golang':
55           script: '{build_script}'
56     path: 'test/security/k8s'
57     pattern: '{path}/**'
58     stream:
59       - 'master':
60           branch: 'master'
61     build_script: |
62         #!/bin/bash
63         set -ex # Fail build if any setup step fails
64         cd test/security/k8s
65         make test
66
67 - project:
68     name: integration-netconf-pnp-simulator
69     project: integration
70     stream:
71       - 'master':
72           branch: 'master'
73     # Required by verifier
74     mvn-settings: 'integration-settings'
75     project-name: 'integration-netconf-pnp-simulator'
76     gerrit_trigger_file_paths:
77       - compare-type: ANT
78         pattern: 'test/mocks/netconf-pnp-simulator/engine/**'
79     docker-name: 'onap/integration/simulators/netconf-pnp-simulator'
80     docker-root: test/mocks/netconf-pnp-simulator/engine
81     container-tag-method: yaml-file
82     post_docker_build_script: !include-raw-escape: ../global-jjb/shell/tox-run.sh
83     build-node: centos7-docker-8c-8g
84     build-timeout: 20
85     jobs:
86       - gerrit-docker-verify
87       - gerrit-docker-merge
88
89 - project:
90     name: integration-linters
91     project: 'integration'
92     project-name: 'integration'
93     python-version: python3
94     jobs:
95       - '{project-name}-{stream}-{subproject}-lint'
96     subproject:
97       - 'yaml':
98           tox-dir: '.'
99           tox-envs: 'yaml'
100           pattern: '**/*.yaml'
101       - 'yml':
102           tox-dir: '.'
103           tox-envs: 'yaml'
104           pattern: '**/*.yml'
105       - 'json':
106           tox-dir: '.'
107           tox-envs: 'json'
108           pattern: '**/*.json'
109       - 'python':
110           tox-dir: '.'
111           tox-envs: 'py'
112           pattern: '**/*.py'
113     stream:
114       - 'master':
115           branch: 'master'