Add release-1.7 branch configurations for CAPM3/IPAM repos
[infra/cicd.git] / jjb / metal3 / job_capm3_e2e_basic_tests.yml
1 ---
2 #
3 # ============LICENSE_START=======================================================
4 #  Copyright (C) 2022 Nordix Foundation.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #      http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18 # SPDX-License-Identifier: Apache-2.0
19 # ============LICENSE_END=========================================================
20
21 # Description:
22 # ============
23 # This file contains job template definition for Cluster API Provider Metal3 (CAPM3) e2e basic integration tests.
24 # This job can be triggered manually or through a Github pull request. It creates a
25 # pipeline job. The pipeline scripts are maintained in Metal3 CI project infra repository.
26
27 - job-template:
28     id: capm3_e2e_basic_tests
29     name: '{job_prefix}-{image_os}-e2e-basic-test-{capm3_target_branch}'
30     description: "CAPM3 {capm3_version} e2e basic integration tests on {image_os}."
31     project-type: pipeline
32     defaults: global
33     disabled: False
34     concurrent: True
35     parameters:
36     # Parameters set by Prow
37     - string:
38         name: BUILD_ID
39         description: 'Used by Prow when triggering jobs'
40     - string:
41         name: PROW_JOB_ID
42         description: 'Used by Prow when triggering jobs'
43     - string:
44         name: REPO_OWNER
45         description: 'Project github repo org name'
46     - string:
47         name: REPO_NAME
48         description: 'Project github repo name'
49     - string:
50         name: PULL_BASE_REF
51         default: '{capm3_release_branch}'
52         description: 'Ref name of the base branch'
53     - string:
54         name: PULL_PULL_SHA
55         default: '{capm3_release_branch}'
56         description: 'Pull request head SHA'
57     - string:
58         name: PULL_NUMBER
59         description: 'Pull request number'
60     # End of Prow parameters
61     - string:
62         name: IMAGE_OS
63         default: '{image_os}'
64         description: 'Distribution to use for the target host as well as source and target cluster. Can be ubuntu or centos'
65     - string:
66         name: capm3_release_branch
67         default: '{capm3_release_branch}'
68         description: 'The target branch of CAPM3 to be used for this test'
69     - string:
70         name: bmo_release_branch
71         default: '{bmo_release_branch}'
72         description: 'The target branch of BMO to be used for this test'
73     - string:
74         name: CAPI_VERSION
75         default: '{capi_version}'
76         description: 'Cluster API version. E.g. v1beta1.'
77     - string:
78         name: CAPM3_VERSION
79         default: '{capm3_version}'
80         description: 'Cluster API provider Metal3 version. E.g. v1beta1.'
81     - string:
82         name: TARGET_NODE_MEMORY
83         default: 4096
84         description: 'RAM size of the target host.'
85     - string:
86         name: TESTS_FOR
87         default: "e2e_tests"
88         description: 'Tests using the e2e framework.'
89     - string:
90         name: GINKGO_FOCUS
91         default: "basic"
92         description: 'Select the e2e basic integration test'
93
94     properties:
95     - build-discarder:
96         days-to-keep: 30
97         num-to-keep: 300
98         artifact-days-to-keep: -1
99         artifact-num-to-keep: -1
100
101     triggers: []
102
103     pipeline-scm:
104       scm:
105       - git:
106           url: "{ci_github_repo}"
107           credentials-id: "{ci_github_jenkins_credentials_id}"
108           branches:
109             - '{branch|main}'
110           name: 'origin'
111           refspec: '+refs/heads/*:refs/remotes/origin/*'
112           wipe-workspace: True
113           honor-refspec: True
114           shallow-clone: False
115       script-path: "jenkins/jobs/prow_integration_tests.pipeline"
116       lightweight-checkout: False
117
118 - project:
119     name: "capm3-basic"
120     image_os:
121     - ubuntu
122     - centos
123     jobs:
124     - capm3_e2e_basic_tests:
125         capm3_target_branch:
126         - main:
127             capi_version: v1beta1
128             capm3_version: v1beta1
129             capm3_release_branch: main
130             bmo_release_branch: main
131             target_branches:
132             - 'main'
133         - release-1-7:
134             capi_version: v1beta1
135             capm3_version: v1beta1
136             capm3_release_branch: release-1.7
137             bmo_release_branch: release-0.6
138             target_branches:
139             - 'main'
140             - 'release-1.7'
141             - 'release-0.6'
142         - release-1-6:
143             capi_version: v1beta1
144             capm3_version: v1beta1
145             capm3_release_branch: release-1.6
146             bmo_release_branch: release-0.5
147             target_branches:
148             - 'main'
149             - 'release-1.6'
150             - 'release-0.5'