Fix: Add missing Python 3.x dependencies for tests
[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           # shellcheck disable=SC1090
63           source ~/lf-env.sh
64
65           lf-activate-venv --python python3.8 --venv-file /tmp/.toxenv \
66             tox==3.27.1 tox-pyenv virtualenv argparse webtest
67
68           if [[ -d /opt/pyenv ]]; then
69             echo "---> Setting up pyenv"
70             export PYENV_ROOT="/opt/pyenv"
71             export PATH="$PYENV_ROOT/bin:$PATH"
72             PYTHONPATH="$(pwd)"
73             export PYTHONPATH
74             export TOX_TESTENV_PASSENV=PYTHONPATH
75           fi
76
77           python -m pip install --upgrade pip
78
79           # Useful debugging
80           python --version
81           python -m pip freeze
82           tox --version
83
84           cd $WORKSPACE/{path}
85           tox
86
87     publishers:
88       - lf-infra-publish
89
90 - job-template:
91     # Job template for docker daily jobs for 3 SCMs
92     #
93     # The purpose of this job template is to run:
94     # 1. inject a version properties file
95     # 2. login into the docker registry
96     # 4. run a specified shell script
97     #
98     # Required Variables:
99     #     branch:    git branch (eg. stable/lithium or master)
100
101     name: '{project-name}-{stream}-3scm-docker-shell-daily'
102     project-type: freestyle
103     node: 'queue-docker-4c-4g'
104
105     properties:
106       - infra-properties:
107           build-days-to-keep: '{build-days-to-keep}'
108
109     parameters:
110       - infra-parameters:
111           project: '{project}'
112           branch: '{branch}'
113           refspec: 'refs/heads/{branch}'
114           artifacts: '{archive-artifacts}'
115       - maven-exec:
116           maven-version: '{maven-version}'
117     scm:
118       - gerrit-trigger-scm:
119           refspec: ''
120           choosing-strategy: 'default'
121           submodule-recursive: '{submodule-recursive}'
122
123     wrappers:
124       - infra-wrappers-docker-build:
125           build-timeout: '{build-timeout}'
126
127     triggers:
128       - timed: 'H */4 * * *'
129       - gerrit-trigger-release-manually:
130           server: '{server-name}'
131           project: '{project}'
132           branch: '{branch}'
133       - gerrit-trigger-patch-merged:
134           server: '{server-name}'
135           project: '{project}'
136           branch: '{branch}'
137           files: '**'
138
139     builders:
140       - lf-infra-pre-build
141       - provide-maven-settings:
142           global-settings-file: 'global-settings'
143           settings-file: '{mvn-settings}'
144       - inject:
145           properties-file: version.properties
146       - docker-login
147       - shell: '{script}'
148
149     publishers:
150       - lf-infra-publish