De-lint JJB files
[ci-management.git] / jjb / global-templates-python.yaml
1 ---
2 - job-template:
3     # Job template for python verify jobs
4     #
5     # The purpose of this job template is to run tox for projects using this
6     # template.
7     #
8     # Required Variables:
9     #     branch:    git branch (eg. stable/lithium or master)
10     # Optional Variables:
11     #     path:      directory containing the project's tox.ini relative to
12     #                the workspace. The default is the project root.
13     #     pattern:   ant file-path pattern relative to the workspace used to
14     #                trigger the job
15
16     name: '{project-name}-{stream}-{subproject}-verify-python'
17     path: '$WORKSPACE'
18
19     project-type: freestyle
20     concurrent: true
21     node: '{build-node}'
22
23     properties:
24       - ecomp-infra-properties:
25           build-days-to-keep: '{build-days-to-keep}'
26
27     parameters:
28       - ecomp-infra-parameters:
29           project: '{project}'
30           branch: '{branch}'
31           refspec: 'refs/heads/{branch}'
32           artifacts: '{archive-artifacts}'
33       - maven-exec:
34           maven-version: '{maven-version}'
35
36     scm:
37       - gerrit-trigger-scm:
38           refspec: '$GERRIT_REFSPEC'
39           choosing-strategy: 'gerrit'
40
41     wrappers:
42       - ecomp-infra-wrappers:
43           build-timeout: '{build-timeout}'
44
45     triggers:
46       - gerrit-trigger-patch-submitted:
47           server: '{server-name}'
48           project: '{project}'
49           branch: '{branch}'
50           files: '{pattern}'
51
52     builders:
53       - provide-maven-settings:
54           global-settings-file: 'global-settings'
55           settings-file: '{mvn-settings}'
56       - shell: |
57           #!/bin/bash
58           virtualenv $WORKSPACE/venv-tox
59           source $WORKSPACE/venv-tox/bin/activate
60           pip install --upgrade pip
61           pip install --upgrade tox argparse
62           pip freeze
63           cd $WORKSPACE/{path}
64           tox
65
66 #     publishers:
67 #       - ecomp-infra-shiplogs:
68 #           maven-version: '{maven-version}'
69
70 - job-template:
71     name: '{project-name}-{stream}-docker-shell-daily'
72     project-type: freestyle
73     node: 'ubuntu1604-docker-8c-8g'
74
75     properties:
76       - ecomp-infra-properties:
77           build-days-to-keep: '{build-days-to-keep}'
78
79     parameters:
80       - ecomp-infra-parameters:
81           project: '{project}'
82           branch: '{branch}'
83           refspec: 'refs/heads/{branch}'
84           artifacts: '{archive-artifacts}'
85       - maven-exec:
86           maven-version: '{maven-version}'
87
88     scm:
89       - gerrit-trigger-scm:
90           refspec: ''
91           choosing-strategy: 'default'
92
93     wrappers:
94       - ecomp-infra-wrappers:
95           build-timeout: '{build-timeout}'
96
97     triggers:
98       # 12 AM UTC
99       - timed: 'H 12 * * *'
100       - gerrit-trigger-release-manually:
101           server: '{server-name}'
102           project: '{project}'
103           branch: '{branch}'
104
105     builders:
106
107       - provide-maven-settings:
108           global-settings-file: 'global-settings'
109           settings-file: '{mvn-settings}'
110
111       - docker-login
112
113       - shell: |
114           cp $WORKSPACE/docker/* .
115           docker -D build -t openecomp/testsuite .
116           export REPO="nexus3.openecomp.org:10003"
117           docker tag openecomp/testsuite:latest $REPO/openecomp/testsuite:latest
118           docker push $REPO/openecomp/testsuite:latest
119
120 - job-template:
121     name: '{project-name}-{stream}-2scm-docker-shell-daily'
122     project-type: freestyle
123     node: 'ubuntu1604-docker-8c-8g'
124
125     properties:
126       - ecomp-infra-properties:
127           build-days-to-keep: '{build-days-to-keep}'
128
129     parameters:
130       - ecomp-infra-parameters:
131           project: '{project}'
132           branch: '{branch}'
133           refspec: 'refs/heads/{branch}'
134           artifacts: '{archive-artifacts}'
135       - maven-exec:
136           maven-version: '{maven-version}'
137
138     scm:
139       - gerrit-trigger-scm:
140           refspec: ''
141           choosing-strategy: 'default'
142       - git-extra-project:
143           project: '{extra-project1}'
144           refspec: '{extra-refspec1}'
145           branch: '{extra-branch1}'
146           checkout-dir: '{checkout-dir1}'
147       - git-extra-project:
148           project: '{extra-project2}'
149           refspec: '{extra-refspec2}'
150           branch: '{extra-branch2}'
151           checkout-dir: '{checkout-dir2}'
152
153     wrappers:
154       - ecomp-infra-wrappers:
155           build-timeout: '{build-timeout}'
156
157     triggers:
158       # 12 AM UTC
159       - timed: 'H 12 * * *'
160       - gerrit-trigger-release-manually:
161           server: '{server-name}'
162           project: '{project}'
163           branch: '{branch}'
164
165     builders:
166
167       - provide-maven-settings:
168           global-settings-file: 'global-settings'
169           settings-file: '{mvn-settings}'
170
171       - docker-login
172
173       - shell: |
174           cp $WORKSPACE/docker/* .
175           docker -D build -t openecomp/testsuite .
176           export REPO="nexus3.openecomp.org:10003"
177           docker tag openecomp/testsuite:latest $REPO/openecomp/testsuite:latest
178           docker push $REPO/openecomp/testsuite:latest