blob: 10db0c8b595ccdf6f6c29633595bd2db95396f79 [file] [log] [blame]
maelk37e9bd82020-03-01 12:09:06 +02001---
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 CAPI Baremetal 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 Airship CI repository.
27
28- job-template:
29 id: capi_bm_clean
maelk6dbeb0b2020-03-02 12:43:41 +020030 name: '{job_prefix}_metal3io_project_infra_clean_integration_test'
maelk37e9bd82020-03-01 12:09:06 +020031 description: "K8s CAPI baremetal integration tests cleanup"
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
54 properties:
55 - build-discarder:
56 days-to-keep: 30
57 num-to-keep: 300
58 artifact-days-to-keep: -1
59 artifact-num-to-keep: -1
60 - github:
61 url: https://github.com/{repo[org]}/{repo[name]}
62
63 triggers:
64 - github-pull-request:
65 admin-list:
66 - '{ci_github_admin_user}'
67 org-list: "{ci_github_whitelist_org}"
68 cron: 'H/5 * * * *'
69 auth-id: "{ci_ghprb_auth_id}"
70 trigger-phrase: '/test-clean'
71 skip-build-phrase: '/skip-test'
72 only-trigger-phrase: True
73 github-hooks: True
74 permit-all: False
75 auto-close-on-fail: False
76 allow-whitelist-orgs-as-admins: True
77 white-list-target-branches:
78 - 'master'
79 status-context: "test-clean"
80 success-status: "Passed"
81 failure-status: "Failed"
82 error-status: "Error"
83 cancel-builds-on-update: True
84 pipeline-scm:
85 scm:
86 - git:
87 url: "{ci_github_repo}"
88 credentials-id: "{ci_github_jenkins_credentials_id}"
89 branches:
90 - '{branch|master}'
91 name: 'origin'
92 refspec: '+refs/heads/*:refs/remotes/origin/*'
93 wipe-workspace: True
94 honor-refspec: True
95 shallow-clone: False
96 script-path: "{ci_github_pipeline}"
97 lightweight-checkout: False