Merge "spelled testsuite wrong"
[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'
67
68 - job-template:
69     name: '{project-name}-{stream}-docker-shell-daily'
70     project-type: freestyle
71     node: 'ubuntu1604-docker-8c-8g'
72
73     properties:
74       - ecomp-infra-properties:
75           build-days-to-keep: '{build-days-to-keep}'
76
77     parameters:
78       - ecomp-infra-parameters:
79           project: '{project}'
80           branch: '{branch}'
81           refspec: 'refs/heads/{branch}'
82           artifacts: '{archive-artifacts}'
83
84     scm:
85       - gerrit-trigger-scm:
86           refspec: ''
87           choosing-strategy: 'default'
88
89     wrappers:
90       - ecomp-infra-wrappers:
91           build-timeout: '{build-timeout}'
92
93     triggers:
94       # 12 AM UTC
95       - timed: 'H 12 * * *'
96       - gerrit-trigger-release-manually:
97           server: '{server-name}'
98           project: '{project}'
99           branch: '{branch}'
100
101     builders:
102
103       - provide-maven-settings:
104           global-settings-file: 'global-settings'
105           settings-file: '{mvn-settings}'
106
107       - docker-login
108
109       - shell: |
110           cp $WORKSPACE/docker/* .
111           docker -D build -t openecomp/testsuite .
112           export DOCKER_REPOSITORY="nexus3.openecomp.org:10003"
113           docker tag openecomp/testsuite:latest $DOCKER_REPOSITORY/openecomp/testsuite:latest
114           docker push $DOCKER_REPOSITORY/openecomp/testsuite:latest