blob: ed3d0dc6de9efd03cc5ea696e7ab054eb5cc729e [file] [log] [blame]
Zack Williams15bc4a52018-07-23 15:31:58 -07001---
2# CORD API tests through synchronizer updates
3
4- job-template:
5 id: synchronizer-update
6 name: 'verify_{project}_synchronizer-update'
7 description: |
8 Created by {id} job-template from ci-management/jjb/xos-synchronizer-update.yaml
9
10 triggers:
11 - cord-infra-gerrit-trigger-patchset:
12 gerrit-server-name: '{gerrit-server-name}'
13 project-regexp: '^{project}$'
14 branch-regexp: '{branch-regexp}'
Zack Williamsba2aea02018-12-17 22:37:45 -070015 file-include-regexp: '{code-files-regexp}'
Zack Williams15bc4a52018-07-23 15:31:58 -070016 dependency-jobs: '{dependency-jobs}'
17
18 properties:
19 - cord-infra-properties:
20 build-days-to-keep: '{build-days-to-keep}'
21 artifact-num-to-keep: '{artifact-num-to-keep}'
22
23 wrappers:
24 - lf-infra-wrappers:
25 build-timeout: '60'
26 jenkins-ssh-credential: '{jenkins-ssh-credential}'
27
28 parameters:
29 - string:
Zack Williamsb3292082019-10-11 17:15:18 -070030 name: buildNode
Joey Armstrongc5194c42024-07-23 15:31:18 -040031 # default: 'ubuntu18.04-basebuild-4c-8g'
32 default: 'voltha-1804-micro'
hwchiu14f97852019-10-08 10:51:11 -070033 description: 'Name of the Jenkins node to run the job on'
Zack Williams15bc4a52018-07-23 15:31:58 -070034
35 - string:
hwchiu14f97852019-10-08 10:51:11 -070036 name: manifestUrl
37 default: '{gerrit-server-url}/{cord-repo-manifest}'
38 description: 'URL to the repo manifest'
Zack Williams15bc4a52018-07-23 15:31:58 -070039
40 - string:
hwchiu14f97852019-10-08 10:51:11 -070041 name: manifestBranch
42 default: '$GERRIT_BRANCH'
43 description: 'Name of the repo branch to use'
Zack Williams15bc4a52018-07-23 15:31:58 -070044
45 - string:
hwchiu14f97852019-10-08 10:51:11 -070046 name: gerritProject
47 default: '$GERRIT_PROJECT'
48 description: 'Name of the Gerrit project'
Zack Williams15bc4a52018-07-23 15:31:58 -070049
50 - string:
hwchiu14f97852019-10-08 10:51:11 -070051 name: gerritChangeNumber
52 default: '$GERRIT_CHANGE_NUMBER'
53 description: 'Changeset number in Gerrit'
Zack Williams15bc4a52018-07-23 15:31:58 -070054
55 - string:
hwchiu14f97852019-10-08 10:51:11 -070056 name: gerritPatchsetNumber
57 default: '$GERRIT_PATCHSET_NUMBER'
58 description: 'PatchSet number in Gerrit'
Zack Williams15bc4a52018-07-23 15:31:58 -070059
60 project-type: pipeline
61 concurrent: true
62
63 dsl: !include-raw-escape: pipeline/xos-synchronizer-update.groovy
Joey Armstrongaf679da2023-01-31 14:22:41 -050064
65# [EOF]