0113fc933feb42937f44b66f9da17bfe0a537d4e
[infra/cicd.git] / jjb / metal3 / job_dev_env_main_integration_tests_prow.yaml
1 ---
2 #
3 # ============LICENSE_START=======================================================
4 #  Copyright (C) 2024 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) integration tests.
24 # This job runs periodically by timer or it can be triggered manually through Jenkins. It creates a
25 # pipeline job. The pipeline scripts are maintained in Metal3 CI project infra repository.
26
27 - job-template:
28     id: dev_env_periodic_integration_tests_prow
29     name: 'dev_env_periodic_integration_test_{image_os}_{capm3_target_branch}_{name_postfix}'
30     description: "CAPM3 {capm3_version} integration tests on {image_os} with ironic installed from {ironic_install_type}."
31     project-type: pipeline
32     defaults: integration-default-values
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         default: 'metal3-io'
46         description: 'Project github repo org name'
47     - string:
48         name: REPO_NAME
49         default: 'metal3-dev-env'
50         description: 'Project github repo name'
51     - string:
52         name: PULL_BASE_REF
53         default: '{capm3_release_branch}'
54         description: 'Ref name of the base branch'
55     - string:
56         name: PULL_PULL_SHA
57         default: '{capm3_release_branch}'
58         description: 'Pull request head SHA'
59     - string:
60         name: PULL_NUMBER
61         description: 'Pull request number'
62     # End of Prow parameters
63     - string:
64         name: capm3_release_branch
65         default: '{capm3_release_branch}'
66         description: 'The target branch of CAPM3 to be used for this test'
67     - string:
68         name: bmo_release_branch
69         default: '{bmo_release_branch}'
70         description: 'The target branch of BMO to be used for this test'
71     - string:
72         name: IMAGE_OS
73         default: '{image_os}'
74         description: 'Distribution to use for the target host as well as source and target cluster. Can be ubuntu or centos'
75     - string:
76         name: CAPI_VERSION
77         default: '{capi_version}'
78         description: 'Cluster API version.'
79     - string:
80         name: CAPM3_VERSION
81         default: '{capm3_version}'
82         description: 'Cluster API provider Metal3 version.'
83     - string:
84         name: TARGET_NODE_MEMORY
85         default: 4096
86         description: 'RAM size of the target host.'
87     - string:
88         name: IRONIC_INSTALL_TYPE
89         default: '{ironic_install_type}'
90         description: 'Sets the installation type of ironic during ironic-image build of the BMO deployment'
91     - string:
92         name: IRONIC_USE_MARIADB
93         default: '{ironic_use_mariadb}'
94         description: 'If Ironic should use MariaDB or not.'
95     - string:
96         name: BUILD_MARIADB_IMAGE_LOCALLY
97         default: '{build_mariadb_image_locally}'
98     properties:
99     - build-discarder:
100         days-to-keep: 30
101         num-to-keep: 300
102         artifact-days-to-keep: -1
103         artifact-num-to-keep: -1
104
105     triggers:
106       - timed: "{schedule}"
107
108     pipeline-scm:
109       scm:
110       - git:
111           url: "{ci_github_repo}"
112           credentials-id: "{ci_github_jenkins_credentials_id}"
113           branches:
114           - '{branch|main}'
115           name: 'origin'
116           refspec: '+refs/heads/*:refs/remotes/origin/*'
117           wipe-workspace: True
118           honor-refspec: True
119           shallow-clone: False
120       script-path: "{dev_env_integration_test_pipeline}"
121       lightweight-checkout: False