Remove ghprb and add prow pareameters in bml jobs
[infra/cicd.git] / jjb / metal3 / job_bml_integration_tests.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) BML
24 # 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 Metal3 CI project infra repository.
27
28 - job-template:
29     id: bml_integration_tests
30     name: '{job_prefix}-bml-integration-tests-{image_os}'
31     description: "CAPM3 v1beta1 integration tests on {image_os} in Bare Metal Lab."
32     project-type: pipeline
33     defaults: global
34     disabled: False
35     concurrent: True
36     parameters:
37     # Parameters set by Prow
38     - string:
39         name: BUILD_ID
40         description: 'Used by Prow when triggering jobs'
41     - string:
42         name: PROW_JOB_ID
43         description: 'Used by Prow when triggering jobs'
44     - string:
45         name: REPO_OWNER
46         default: 'metal3-io'
47         description: 'Project github repo org name'
48     - string:
49         name: REPO_NAME
50         default: 'metal3-dev-env'
51         description: 'Project github repo name'
52     - string:
53         name: PULL_BASE_REF
54         default: 'main'
55         description: 'Ref name of the base branch'
56     - string:
57         name: PULL_PULL_SHA
58         default: 'main'
59         description: 'Pull request head SHA'
60     - string:
61         name: PULL_NUMBER
62         description: 'Pull request number'
63     # End of Prow parameters
64     - string:
65         name: IMAGE_OS
66         default: '{image_os}'
67         description: 'Distribution to use for the target host as well as source and target cluster. Can be ubuntu or centos'
68     - string:
69         name: capm3_release_branch
70         default: 'main'
71         description: 'The target branch of CAPM3 to be used for this test'
72     - string:
73         name: bmo_release_branch
74         default: 'main'
75         description: 'The target branch of BMO to be used for this test'
76     - string:
77         name: CAPI_VERSION
78         default: 'v1beta1'
79         description: 'Cluster API version. E.g. v1beta1.'
80     - string:
81         name: CAPM3_VERSION
82         default: 'v1beta1'
83         description: 'Cluster API provider Metal3 version. E.g. v1beta1.'
84     - string:
85         name: TARGET_NODE_MEMORY
86         default: 4096
87         description: 'RAM size of the target host.'
88     - string:
89         name: NUM_NODES
90         default: 2
91         description: 'Number of baremetal servers'
92
93     properties:
94     - build-discarder:
95         days-to-keep: 30
96         num-to-keep: 300
97         artifact-days-to-keep: -1
98         artifact-num-to-keep: -1
99     - build-blocker:
100         use-build-blocker: true
101         blocking-jobs:
102             - ".*_bml_integration_tests_centos"
103         block-level: 'GLOBAL'
104
105     pipeline-scm:
106       scm:
107       - git:
108           url: "{ci_github_repo}"
109           credentials-id: "{ci_github_jenkins_credentials_id}"
110           branches:
111             - '{branch|main}'
112           name: 'origin'
113           refspec: '+refs/heads/*:refs/remotes/origin/*'
114           wipe-workspace: True
115           honor-refspec: True
116           shallow-clone: False
117       script-path: 'jenkins/jobs/bml_integration_tests.pipeline'
118       lightweight-checkout: False