746ad6ed6416ba084ce83b07a11cba3827087760
[infra/cicd.git] / jjb / metal3 / job_metal3_dev_tools_integration_test_centos.yml
1 ---
2 #
3 # ============LICENSE_START=======================================================
4 #  Copyright (C) 2019 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)
24 # dev tools integration tests.
25 # This job can be triggered manually or through a Github pull request. It creates a
26 # pipeline job. The pipeline scripts are maintained in Nordix/metal3-dev-tools repository.
27
28 - job-template:
29     id: metal3_dev_tools_integration_test_centos
30     name: 'metal3_dev_tools_integration_test_centos'
31     description: "CAPM3 v1beta1 integration tests for {repo[org]}/{repo[name]} on CentOS. "
32     project-type: pipeline
33     defaults: global
34     disabled: False
35     concurrent: True
36     parameters:
37     - string:
38         name: PROJECT_REPO_ORG
39         default: '{repo[org]}'
40         description: 'Project github repo org name'
41     - string:
42         name: PROJECT_REPO_NAME
43         default: '{repo[name]}'
44         description: 'Project github repo name'
45     - string:
46         name: ghprbActualCommit
47         default: 'master'
48         description: 'CI Repo branch for triggering manual build'
49     - string:
50         name: ghprbAuthorRepoGitUrl
51         default: 'https://github.com/{repo[org]}/{repo[name]}.git'
52         description: 'CI Repo URL for triggering manual build'
53     - string:
54         name: ghprbTargetBranch
55         default: 'master'
56         description: 'Target branch of the PR'
57     - string:
58         name: DISTRIBUTION
59         default: 'centos'
60         description: 'Distribution to use for the tests. Can be ubuntu or centos'
61     - string:
62         name: CAPI_VERSION
63         default: 'v1beta1'
64         description: 'Cluster API version. Can be v1alpha4.'
65     - string:
66         name: CAPM3_VERSION
67         default: 'v1beta1'
68         description: 'Cluster API provider Metal3 version. Can be v1alpha5 or v1alpha4.'
69     - string:
70         name: TARGET_NODE_OS
71         default: 'Centos'
72         description: 'Distribution to use for the target host.'
73     - string:
74         name: TARGET_NODE_MEMORY
75         default: 4096
76         description: 'RAM size of the target host.'
77     - string:
78         name: KUBERNETES_VERSION
79         default: "v1.23.3"
80         description: 'Kubernetes version'
81
82     properties:
83     - build-discarder:
84         days-to-keep: 30
85         num-to-keep: 300
86         artifact-days-to-keep: -1
87         artifact-num-to-keep: -1
88     - github:
89         url: https://github.com/{repo[org]}/{repo[name]}
90
91     triggers:
92     - github-pull-request:
93         admin-list:
94           - '{ci_github_admin_user}'
95         org-list: "{ci_github_whitelist_org}"
96         cron: 'H/5 * * * *'
97         auth-id: "{ci_ghprb_auth_id}"
98         trigger-phrase: '((.|\n)*\s)?/test-integration-metal3-centos(\s(.|\n)*)?'
99         skip-build-phrase: '/skip-test'
100         only-trigger-phrase: True
101         github-hooks: True
102         permit-all: False
103         auto-close-on-fail: False
104         allow-whitelist-orgs-as-admins: True
105         white-list-target-branches:
106           - 'master'
107           - 'main'
108         status-context: "test-integration-metal3-centos"
109         success-status: "Passed"
110         failure-status: "Failed"
111         error-status: "Error"
112         cancel-builds-on-update: True
113     pipeline-scm:
114       scm:
115       - git:
116           url: "{ci_github_repo}"
117           credentials-id: "{ci_github_jenkins_credentials_id}"
118           branches:
119             - '{branch|master}'
120           name: 'origin'
121           refspec: '+refs/heads/*:refs/remotes/origin/*'
122           wipe-workspace: True
123           honor-refspec: True
124           shallow-clone: False
125       script-path: 'ci/jobs/metal3_dev_tools_integration_tests.pipeline'
126       lightweight-checkout: False