Merge "Removing version plugin from subproject"
[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
34     scm:
35       - gerrit-trigger-scm:
36           refspec: '$GERRIT_REFSPEC'
37           choosing-strategy: 'gerrit'
38
39     wrappers:
40       - ecomp-infra-wrappers:
41           build-timeout: '{build-timeout}'
42
43     triggers:
44       - gerrit-trigger-patch-submitted:
45           server: '{server-name}'
46           project: '{project}'
47           branch: '{branch}'
48           files: '{pattern}'
49
50     builders:
51       - provide-maven-settings:
52           global-settings-file: 'global-settings'
53           settings-file: '{mvn-settings}'
54       - shell: |
55           #!/bin/bash
56           virtualenv $WORKSPACE/venv-tox
57           source $WORKSPACE/venv-tox/bin/activate
58           pip install --upgrade pip
59           pip install --upgrade tox argparse
60           pip freeze
61           cd $WORKSPACE/{path}
62           tox
63
64 #     publishers:
65 #       - ecomp-infra-shiplogs:
66 #           maven-version: 'mvn33'