Fix SCM macro usage of refspec, branches
[ci-management.git] / jjb / akraino-templates / akraino-jjb-docker.yaml
1 ---
2 #
3 # Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License"); you may
6 # not use this file except in compliance with the License.
7 #
8 # You may obtain a copy of the License at
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17 - job-template:
18     id: 'akraino-project-stream-docker'
19     name: '{project-name}-{stream}-docker'
20     project-type: freestyle
21     node: '{build-node}'
22
23     parameters:
24       - lf-infra-parameters:
25           project: '{project}'
26           branch: '{branch}'
27           stream: '{stream}'
28           lftools-version: '{lftools-version}'
29
30     scm:
31       - lf-infra-gerrit-scm:
32           jenkins-ssh-credential: '{jenkins-ssh-credential}'
33           git-url: '{git-url}/{project}.git'
34           refspec: '$GERRIT_REFSPEC'
35           branch: '$GERRIT_BRANCH'
36           submodule-recursive: '{submodule-recursive}'
37           submodule-timeout: '{submodule-timeout}'
38           submodule-disable: false
39           choosing-strategy: default
40
41     builders:
42       - lf-update-java-alternatives:
43           java-version: '{java-version}'
44       - lf-infra-docker-login:
45           global-settings-file: '{global-settings-file}'
46           settings-file: '{mvn-settings}'
47       - inject:
48           properties-content: |
49               PROJECT={project}
50       - shell: !include-raw-escape:
51           - ../shell/build-docker.sh
52
53     triggers:
54       - timed: '@hourly'
55
56 - job-template:
57     id: 'akraino-project-stream-stage-docker'
58     name: '{project-name}-{stream}-stage-docker'
59     project-type: freestyle
60     node: '{build-node}'
61
62     parameters:
63       - lf-infra-parameters:
64           project: '{project}'
65           branch: '{branch}'
66           stream: '{stream}'
67           lftools-version: '{lftools-version}'
68       - string:
69           name: STAGING_BUILD
70           default: 'true'
71           description: Mark this as a staging build.
72
73     scm:
74       - lf-infra-gerrit-scm:
75           jenkins-ssh-credential: '{jenkins-ssh-credential}'
76           git-url: '{git-url}/{project}.git'
77           refspec: '$GERRIT_REFSPEC'
78           branch: '$GERRIT_BRANCH'
79           submodule-recursive: '{submodule-recursive}'
80           submodule-timeout: '{submodule-timeout}'
81           submodule-disable: false
82           choosing-strategy: default
83
84     builders:
85       - lf-update-java-alternatives:
86           java-version: '{java-version}'
87       - lf-infra-docker-login:
88           global-settings-file: '{global-settings-file}'
89           settings-file: '{mvn-settings}'
90       - inject:
91           properties-content: |
92               PROJECT={project}
93       - shell: !include-raw-escape:
94           - ../shell/get-upstream-autostage.sh
95           - ../shell/build-docker.sh
96
97     triggers:
98       - reverse:
99           jobs:
100             - '{project}-maven-stage-{stream}'
101             - 'yaml_builds-{stream}-stage-config'