blob: d28f7a391af573ce1677452ec298d0cf41dbae22 [file] [log] [blame]
Zack Williamsbe542312022-06-23 21:51:32 -07001---
Joey Armstrong6a9013e2024-02-01 17:56:57 -05002# SPDX-FileCopyrightText: 2020-2024 Open Networking Foundation (ONF) and the ONF Contributors
Zack Williamsbe542312022-06-23 21:51:32 -07003# SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
4
5- job-template:
6 id: publish-helm-repo
7 name: 'publish-helm-repo_{project}'
8 description: |
9 Created by publish-helm-repo job-template from
10 ci-management/jjb/templates/publish-helm-repo.yaml
11 disabled: '{disable-job}'
12
13 triggers:
14 - onf-infra-gerrit-trigger-merge:
15 gerrit-server-name: '{gerrit-server-name}'
16 project-regexp: '{project}'
17 branch-regexp: '{all-branches-regexp}'
18 file-include-regexp: '{all-files-regexp}'
19 dependency-jobs: ''
20
21 properties:
22 - onf-infra-properties:
23 build-days-to-keep: '{build-days-to-keep}'
24 artifact-num-to-keep: '{artifact-num-to-keep}'
25
26 wrappers:
27 - onf-infra-rsync-wrappers:
28 build-timeout: '{build-timeout}'
29 ssh_credential_list:
30 - 'new-cord-jenkins-ssh'
31
32 scm:
33 - onf-infra-gerrit-scm:
34 git-url: '{gerrit-server-ssh-url}/$GERRIT_PROJECT'
35 refspec: ''
36 branch: '$GERRIT_BRANCH'
37 submodule-disable: '{submodule-disable}'
38 submodule-recursive: 'false'
39 submodule-timeout: '{submodule-timeout}'
40 choosing-strategy: gerrit
41 jenkins-ssh-credential: '{jenkins-ssh-credential}'
42 basedir: ''
43
44 node: 'ubuntu18.04-basebuild-2c-4g'
45 project-type: freestyle
46 concurrent: false
47
48 builders:
49 - shell: !include-raw-escape: jjb/shell/publish-helm-repo.sh
Joey Armstrongaf679da2023-01-31 14:22:41 -050050
51# [EOF]