blob: b01423f136fc17a1af1d8afee4dc705b34bc9332 [file] [log] [blame]
Minna Färme7617002023-07-24 12:24:01 +03001---
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
Mohammed Boukhalfac8f752d2024-03-01 15:25:24 +020029 name: '{job_prefix}-{proj}-{capm3_target_branch}-e2e-basic-test-{image_os}'
Minna Färme7617002023-07-24 12:24:01 +030030 description: "CAPM3 {capm3_version} e2e basic integration tests for {org}/{repo} on {image_os}."
31 project-type: pipeline
32 defaults: global
33 disabled: False
34 concurrent: True
35 parameters:
Mohammed Boukhalfa011b1a92024-02-19 08:40:35 +020036 # 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 default: '{org}'
46 description: 'Project github repo org name'
47 - string:
48 name: REPO_NAME
49 default: '{repo}'
50 description: 'Project github repo name'
51 - string:
52 name: PULL_BASE_REF
53 default: 'main'
54 description: 'Ref name of the base branch'
55 - string:
56 name: PULL_PULL_SHA
57 default: 'main'
58 description: 'Pull request head SHA'
Mohammed Boukhalfab33e4d02024-03-05 11:04:17 +020059 - string:
60 name: PULL_NUMBER
61 description: 'Pull request number'
Mohammed Boukhalfa011b1a92024-02-19 08:40:35 +020062 # End of Prow parameters
Minna Färme7617002023-07-24 12:24:01 +030063 - string:
64 name: PROJECT_REPO_ORG
65 default: '{org}'
66 description: 'Project github repo org name'
67 - string:
68 name: PROJECT_REPO_NAME
69 default: '{repo}'
70 description: 'Project github repo name'
71 - string:
72 name: ghprbActualCommit
73 default: 'main'
74 description: 'CI Repo branch for triggering manual build'
75 - string:
76 name: ghprbAuthorRepoGitUrl
77 default: 'https://github.com/{org}/{repo}.git'
78 description: 'CI Repo URL for triggering manual build'
79 - string:
80 name: ghprbTargetBranch
81 default: 'main'
82 description: 'Target branch of the PR'
83 - string:
84 name: IMAGE_OS
85 default: '{image_os}'
86 description: 'Distribution to use for the target host as well as source and target cluster. Can be ubuntu or centos'
87 - string:
88 name: capm3_release_branch
89 default: '{capm3_release_branch}'
90 description: 'The target branch of CAPM3 to be used for this test'
91 - string:
Kashif Khan511cdd32023-10-04 17:04:13 +030092 name: bmo_release_branch
93 default: '{bmo_release_branch}'
94 description: 'The target branch of BMO to be used for this test'
95 - string:
Minna Färme7617002023-07-24 12:24:01 +030096 name: CAPI_VERSION
97 default: '{capi_version}'
98 description: 'Cluster API version. E.g. v1beta1.'
99 - string:
100 name: CAPM3_VERSION
101 default: '{capm3_version}'
102 description: 'Cluster API provider Metal3 version. E.g. v1beta1.'
103 - string:
104 name: TARGET_NODE_MEMORY
105 default: 4096
106 description: 'RAM size of the target host.'
107 - string:
108 name: TESTS_FOR
109 default: "e2e_tests"
110 description: 'Tests using the e2e framework.'
111 - string:
112 name: GINKGO_FOCUS
113 default: "basic"
114 description: 'Select the e2e basic integration test'
115
116 properties:
117 - build-discarder:
118 days-to-keep: 30
119 num-to-keep: 300
120 artifact-days-to-keep: -1
121 artifact-num-to-keep: -1
122 - github:
123 url: https://github.com/{org}/{repo}
124
125 triggers:
126 - github-pull-request:
127 admin-list:
128 - '{ci_github_admin_user}'
129 org-list: "{ci_github_whitelist_org}"
130 cron: 'H/5 * * * *'
131 auth-id: "{ci_ghprb_auth_id}"
Nauman Yaseen4426dc62024-02-21 13:49:40 +0000132 trigger-phrase: '.*?/test-{image_os}-e2e-basic-{capm3_target_branch}.*?'
Minna Färme7617002023-07-24 12:24:01 +0300133 skip-build-phrase: '/skip-test'
134 only-trigger-phrase: True
135 github-hooks: True
136 permit-all: False
137 auto-close-on-fail: False
138 allow-whitelist-orgs-as-admins: True
139 white-list-target-branches: "{target_branches}"
140 status-context: "test-{image_os}-e2e-basic-{capm3_target_branch}"
141 success-status: "Passed"
142 failure-status: "Failed"
143 error-status: "Error"
144 cancel-builds-on-update: True
145 pipeline-scm:
146 scm:
147 - git:
Mohammed Boukhalfa86389562024-03-04 20:13:39 +0200148 url: "https://github.com/Nordix/metal3-project-infra.git"
Minna Färme7617002023-07-24 12:24:01 +0300149 credentials-id: "{ci_github_jenkins_credentials_id}"
150 branches:
Mohammed Boukhalfa86389562024-03-04 20:13:39 +0200151 - 'fetch-changes-from-pr-id/mboukhalfa'
Minna Färme7617002023-07-24 12:24:01 +0300152 name: 'origin'
153 refspec: '+refs/heads/*:refs/remotes/origin/*'
154 wipe-workspace: True
155 honor-refspec: True
156 shallow-clone: False
Mohammed Boukhalfa0f535b72024-02-28 20:07:06 +0200157 script-path: "jenkins/jobs/prow_integration_tests.pipeline"
Minna Färme7617002023-07-24 12:24:01 +0300158 lightweight-checkout: False