Merge "Run integration test after docker image is build"
[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:
6     # 1. tox
7     #
8     # This job supports subprojects.
9     #
10     # Required Variables:
11     #     branch:    git branch (eg. stable/lithium or master)
12     # Optional Variables:
13     #     path:      directory containing the project's tox.ini relative to
14     #                the workspace. The default is the project root.
15     #     pattern:   ant file-path pattern relative to the workspace used to
16     #                trigger the job
17
18     name: '{project-name}-{stream}-{subproject}-verify-python'
19     path: '$WORKSPACE'
20
21     project-type: freestyle
22     concurrent: true
23     node: '{build-node}'
24
25     properties:
26       - infra-properties:
27           build-days-to-keep: '{build-days-to-keep}'
28
29     parameters:
30       - infra-parameters:
31           project: '{project}'
32           branch: '{branch}'
33           refspec: 'refs/heads/{branch}'
34           artifacts: '{archive-artifacts}'
35       - maven-exec:
36           maven-version: '{maven-version}'
37
38     scm:
39       - gerrit-trigger-scm:
40           refspec: '$GERRIT_REFSPEC'
41           choosing-strategy: 'gerrit'
42           submodule-recursive: '{submodule-recursive}'
43
44     wrappers:
45       - infra-wrappers:
46           build-timeout: '{build-timeout}'
47
48     triggers:
49       - gerrit-trigger-patch-submitted:
50           server: '{server-name}'
51           project: '{project}'
52           branch: '{branch}'
53           files: '{pattern}'
54
55     builders:
56       - lf-infra-pre-build
57       - provide-maven-settings:
58           global-settings-file: 'global-settings'
59           settings-file: '{mvn-settings}'
60       - shell: |
61           #!/bin/bash
62           virtualenv $WORKSPACE/venv-tox
63           source $WORKSPACE/venv-tox/bin/activate
64           pip install --upgrade pip
65           pip install --upgrade tox argparse
66           pip freeze
67           cd $WORKSPACE/{path}
68           tox
69
70     publishers:
71       - infra-shiplogs:
72           maven-version: '{maven-version}'
73
74
75 - job-template:
76     # Job template for docker daily jobs for 3 SCMs
77     #
78     # The purpose of this job template is to run:
79     # 1. inject a version properties file
80     # 2. login into the docker registry
81     # 4. run a specified shell script
82     #
83     # Required Variables:
84     #     branch:    git branch (eg. stable/lithium or master)
85
86     name: '{project-name}-{stream}-3scm-docker-shell-daily'
87     project-type: freestyle
88     node: 'queue-docker-4c-4g'
89
90     properties:
91       - infra-properties:
92           build-days-to-keep: '{build-days-to-keep}'
93
94     parameters:
95       - infra-parameters:
96           project: '{project}'
97           branch: '{branch}'
98           refspec: 'refs/heads/{branch}'
99           artifacts: '{archive-artifacts}'
100       - maven-exec:
101           maven-version: '{maven-version}'
102     scm:
103       - gerrit-trigger-scm:
104           refspec: ''
105           choosing-strategy: 'default'
106           submodule-recursive: '{submodule-recursive}'
107
108     wrappers:
109       - infra-wrappers-docker-build:
110           build-timeout: '{build-timeout}'
111
112     triggers:
113       - timed: 'H */4 * * *'
114       - gerrit-trigger-release-manually:
115           server: '{server-name}'
116           project: '{project}'
117           branch: '{branch}'
118       - gerrit-trigger-patch-merged:
119           server: '{server-name}'
120           project: '{project}'
121           branch: '{branch}'
122           files: '**'
123
124     builders:
125       - lf-infra-pre-build
126       - provide-maven-settings:
127           global-settings-file: 'global-settings'
128           settings-file: '{mvn-settings}'
129       - inject:
130           properties-file: version.properties
131       - docker-login
132       - shell: '{script}'
133     publishers:
134       - infra-shiplogs:
135           maven-version: '{maven-version}'