blob: b42b40258bf3cf6f0de86fd1d677e97a02d896de (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
---
- job-template:
name: "{project-name}-{stream}-project-csit-{functionality}"
disabled: false
project-type: freestyle
build-node: "ubuntu1804-docker-8c-8g"
node: "{build-node}"
recipients: ""
java-version: "openjdk11"
python-version: python3
properties:
- lf-infra-properties:
project: "{project}"
build-days-to-keep: "{build-days-to-keep}"
parameters:
- infra-parameters:
project: "{project}"
branch: "{branch}"
refspec: "refs/heads/{branch}"
artifacts: "{archive-artifacts}"
- integration-test-options:
test-options: "{functionality}"
scm:
- gerrit-trigger-scm:
refspec: "$GERRIT_REFSPEC"
choosing-strategy: "default"
submodule-recursive: "{submodule-recursive}"
wrappers:
- lf-infra-wrappers:
build-timeout: "{build-timeout}"
jenkins-ssh-credential: "{jenkins-ssh-credential}"
triggers:
- timed: "@daily"
- reverse:
jobs: "{obj:trigger_jobs}"
builders:
- lf-infra-pre-build
- lf-update-java-alternatives:
java-version: "{java-version}"
- integration-run-project-test
publishers:
- integration-project-robot:
unstable-if: 0.0
pass-if: 100.0
- lf-infra-publish
- email:
recipients: "{recipients}"
notify-every-unstable-build: false
send-to-individuals: true
- job-template:
name: "{project-name}-{stream}-project-csit-verify-{functionality}"
disabled: false
project-type: freestyle
build-node: "ubuntu1804-docker-8c-8g"
node: "{build-node}"
recipients: ""
java-version: "openjdk11"
python-version: python3
properties:
- lf-infra-properties:
project: "{project}"
build-days-to-keep: "{build-days-to-keep}"
parameters:
- infra-parameters:
project: "{project}"
branch: "{branch}"
refspec: "refs/heads/{branch}"
artifacts: "{archive-artifacts}"
- integration-test-options:
test-options: "{functionality}"
scm:
- gerrit-trigger-scm:
refspec: "$GERRIT_REFSPEC"
choosing-strategy: "gerrit"
submodule-recursive: "{submodule-recursive}"
wrappers:
- lf-infra-wrappers:
build-timeout: "{build-timeout}"
jenkins-ssh-credential: "{jenkins-ssh-credential}"
triggers:
- gerrit-trigger-patch-submitted:
server: "{server-name}"
project: "{project}"
branch: "{branch}"
files: "**/csit/**"
builders:
- lf-infra-pre-build
- lf-update-java-alternatives:
java-version: "{java-version}"
- integration-run-project-test
publishers:
- integration-project-robot:
unstable-if: 0.0
pass-if: 100.0
- lf-infra-publish
- email:
recipients: "{recipients}"
notify-every-unstable-build: false
send-to-individuals: true
|