blob: f990f66b638312ff6b6f9e0c1e92115b5baa73ec [file] [log] [blame]
Michael Captain930e6022021-04-20 17:44:46 +03001---
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 updating Nordix Artifactory
24# from upstream artifacts. This job can be triggered manually but is intended
25# to run on a schedule request. It creates a pipeline job. The pipeline scripts
26# are maintained in Airship CI repository.
27
28- job-template:
29 id: update_nordix_artifacts
30 name: '{job_prefix}_{name}_artifacts'
31 description: "Update Nordix artifacts in Artifactory"
32 project-type: pipeline
33 defaults: global
34 disabled: False
35 concurrent: True
36 properties:
37 - build-discarder:
38 days-to-keep: 30
39 num-to-keep: 300
40 artifact-days-to-keep: -1
41 artifact-num-to-keep: -1
42
43 triggers:
44 # Run once a week on Monday mornings.
45 - timed: "H 6 * * 1"
46
47 pipeline-scm:
48 scm:
49 - git:
50 url: "{ci_github_repo}"
51 credentials-id: "{ci_github_jenkins_credentials_id}"
52 branches:
53 - 'master'
54 name: 'origin'
55 refspec: '+refs/heads/*:refs/remotes/origin/*'
56 wipe-workspace: True
57 honor-refspec: True
58 shallow-clone: False
59 script-path: 'ci/jobs/update_nordix_artifacts.pipeline'
60 lightweight-checkout: False