trigger integration clean from prow
[infra/cicd.git] / jjb / metal3 / job_periodic_clean.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 K8s Cluster API Provider Metal3 (CAPM3) integration tests
24 # cleanup.
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: periodic_clean
30     name: '{job_prefix}_periodic_integration_tests_cleanup'
31     description: "CAPM3 integration tests cleanup"
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: 'cluster-api-provider-metal3'
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
65     properties:
66     - build-discarder:
67         days-to-keep: 30
68         num-to-keep: 300
69         artifact-days-to-keep: -1
70         artifact-num-to-keep: -1
71
72     triggers:
73       - timed: "0 */6 * * *"
74
75     pipeline-scm:
76       scm:
77       - git:
78           url: "{ci_github_repo}"
79           credentials-id: "{ci_github_jenkins_credentials_id}"
80           branches:
81             - '{branch|main}'
82           name: 'origin'
83           refspec: '+refs/heads/*:refs/remotes/origin/*'
84           wipe-workspace: True
85           honor-refspec: True
86           shallow-clone: False
87       script-path: "{ci_github_pipeline}"
88       lightweight-checkout: False