blob: d1372f3e725568643456372caa9a12c0b290f1db [file] [log] [blame]
Mohammed Boukhalfabae5fab2021-11-04 11:47:54 +02001---
2#
3# ============LICENSE_START=======================================================
4# Copyright (C) 2021 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# ============
Furkat Gofurovb1e99612022-02-04 10:48:36 +020023# This file contains job template definition for Cluster API Provider Metal3 (CAPM3) e2e tests.
Mohammed Boukhalfabae5fab2021-11-04 11:47:54 +020024# This job can be triggered manually or through a Github pull request. It creates a
Furkat Gofurovb1e99612022-02-04 10:48:36 +020025# pipeline job. The pipeline scripts are maintained in Metal3 CI project infra repository.
Mohammed Boukhalfabae5fab2021-11-04 11:47:54 +020026
27- job-template:
Lennart Jern146f50a2022-02-15 08:27:59 +020028 id: capm3_e2e_tests
Furkat Gofurov417257d2022-07-06 11:49:22 +030029 name: '{job_prefix}_{proj}_{capm3_target_branch}_e2e_test_{image_os}'
mboukhalfaf4ea1842022-05-03 17:09:25 +030030 description: "CAPM3 {capm3_version} e2e tests for {org}/{repo} on {image_os}."
Mohammed Boukhalfabae5fab2021-11-04 11:47:54 +020031 project-type: pipeline
32 defaults: global
33 disabled: False
34 concurrent: True
35 parameters:
36 - string:
37 name: PROJECT_REPO_ORG
mboukhalfaf4ea1842022-05-03 17:09:25 +030038 default: '{org}'
Mohammed Boukhalfabae5fab2021-11-04 11:47:54 +020039 description: 'Project github repo org name'
40 - string:
41 name: PROJECT_REPO_NAME
mboukhalfaf4ea1842022-05-03 17:09:25 +030042 default: '{repo}'
Mohammed Boukhalfabae5fab2021-11-04 11:47:54 +020043 description: 'Project github repo name'
44 - string:
45 name: ghprbActualCommit
kashifest3da87502022-03-08 13:06:32 +020046 default: 'main'
Mohammed Boukhalfabae5fab2021-11-04 11:47:54 +020047 description: 'CI Repo branch for triggering manual build'
48 - string:
49 name: ghprbAuthorRepoGitUrl
mboukhalfaf4ea1842022-05-03 17:09:25 +030050 default: 'https://github.com/{org}/{repo}.git'
Mohammed Boukhalfabae5fab2021-11-04 11:47:54 +020051 description: 'CI Repo URL for triggering manual build'
52 - string:
53 name: ghprbTargetBranch
kashifest3da87502022-03-08 13:06:32 +020054 default: 'main'
Mohammed Boukhalfabae5fab2021-11-04 11:47:54 +020055 description: 'Target branch of the PR'
56 - string:
Lennart Jernfba373c2022-02-10 09:50:44 +020057 name: IMAGE_OS
Lennart Jern2e1382e2022-02-14 12:24:16 +020058 default: '{image_os}'
Lennart Jernfba373c2022-02-10 09:50:44 +020059 description: 'Distribution to use for the target host as well as source and target cluster. Can be ubuntu or centos'
Mohammed Boukhalfabae5fab2021-11-04 11:47:54 +020060 - string:
61 name: CAPI_VERSION
Lennart Jern146f50a2022-02-15 08:27:59 +020062 default: '{capi_version}'
63 description: 'Cluster API version. E.g. v1beta1.'
Mohammed Boukhalfabae5fab2021-11-04 11:47:54 +020064 - string:
65 name: CAPM3_VERSION
Lennart Jern146f50a2022-02-15 08:27:59 +020066 default: '{capm3_version}'
67 description: 'Cluster API provider Metal3 version. E.g. v1beta1.'
Mohammed Boukhalfabae5fab2021-11-04 11:47:54 +020068 - string:
Mohammed Boukhalfabae5fab2021-11-04 11:47:54 +020069 name: TARGET_NODE_MEMORY
70 default: 4096
71 description: 'RAM size of the target host.'
72 - string:
73 name: TESTS_FOR
74 default: "e2e_tests"
75 description: 'Tests using the e2e framework.'
76
77 properties:
78 - build-discarder:
79 days-to-keep: 30
80 num-to-keep: 300
81 artifact-days-to-keep: -1
82 artifact-num-to-keep: -1
83 - github:
mboukhalfaf4ea1842022-05-03 17:09:25 +030084 url: https://github.com/{org}/{repo}
Mohammed Boukhalfabae5fab2021-11-04 11:47:54 +020085
86 triggers:
87 - github-pull-request:
88 admin-list:
89 - '{ci_github_admin_user}'
90 org-list: "{ci_github_whitelist_org}"
91 cron: 'H/5 * * * *'
92 auth-id: "{ci_ghprb_auth_id}"
Furkat Gofurov417257d2022-07-06 11:49:22 +030093 trigger-phrase: '((.|\n)*\s)?/test-{image_os}-e2e-{capm3_target_branch}(\s(.|\n)*)?'
Mohammed Boukhalfabae5fab2021-11-04 11:47:54 +020094 skip-build-phrase: '/skip-test'
95 only-trigger-phrase: True
96 github-hooks: True
97 permit-all: False
98 auto-close-on-fail: False
99 allow-whitelist-orgs-as-admins: True
Lennart Jern146f50a2022-02-15 08:27:59 +0200100 white-list-target-branches: "{target_branches}"
Furkat Gofurov417257d2022-07-06 11:49:22 +0300101 status-context: "test-{image_os}-e2e-{capm3_target_branch}"
Mohammed Boukhalfabae5fab2021-11-04 11:47:54 +0200102 success-status: "Passed"
103 failure-status: "Failed"
104 error-status: "Error"
105 cancel-builds-on-update: True
106 pipeline-scm:
107 scm:
108 - git:
109 url: "{ci_github_repo}"
110 credentials-id: "{ci_github_jenkins_credentials_id}"
111 branches:
kashifest79c9c9a2021-12-23 13:55:03 +0200112 - '{branch|main}'
Mohammed Boukhalfabae5fab2021-11-04 11:47:54 +0200113 name: 'origin'
114 refspec: '+refs/heads/*:refs/remotes/origin/*'
115 wipe-workspace: True
116 honor-refspec: True
117 shallow-clone: False
118 script-path: "{ci_github_pipeline}"
119 lightweight-checkout: False