blob: 4cbe98720fb94d13c2212d5e97ed1dbb4d230f0c [file] [log] [blame]
Zack Williams7468c362018-04-06 09:52:30 -07001---
2# CORD documentation verification and publish tasks
3
4- project:
5 name: verify-docs
6
Zack Williams7468c362018-04-06 09:52:30 -07007 jobs:
8 - 'verify-documentation':
Zack Williams9a021d72018-05-25 16:59:25 -07009 other-docs-repos-regexp: '.*'
Zack Williamsbf4cfe52018-05-14 16:29:57 -070010 branch-regexp: '{modern-branches-regexp}'
Zack Williams7468c362018-04-06 09:52:30 -070011
12- project:
13 name: publish-docs
14
15 jobs:
16 - 'publish-documentation':
Zack Williams9a021d72018-05-25 16:59:25 -070017 other-docs-repos-regexp: '.*'
Kailash Khalasica590552018-05-24 15:09:42 -070018 branch-regexp: '{modern-branches-regexp}'
Zack Williams7468c362018-04-06 09:52:30 -070019
Zack Williamsbf4cfe52018-05-14 16:29:57 -070020- job-template:
Zack Williamsc27ca2d2018-04-11 13:16:45 -070021 id: verify-documentation
Zack Williams7468c362018-04-06 09:52:30 -070022 name: "verify-documentation"
23
24 triggers:
Zack Williams0e594a32018-05-15 19:30:38 -070025 - gerrit:
26 server-name: '{gerrit-server-name}'
Zack Williamsa1d1fc62018-05-15 10:51:31 -070027 dependency-jobs: '{dependency-jobs}'
Zack Williams0e594a32018-05-15 19:30:38 -070028 silent-start: true
29 trigger-on:
30 - patchset-created-event:
31 exclude-drafts: true
32 exclude-trivial-rebase: false
33 exclude-no-code-change: true
34 - draft-published-event
35 - comment-added-contains-event:
36 comment-contains-value: '(?i)^.*recheck$'
37 projects:
38 - project-compare-type: PLAIN
39 project-pattern: 'docs'
40 branches:
41 - branch-compare-type: REG_EXP
42 branch-pattern: '{branch-regexp}'
43 file-paths:
44 - compare-type: REG_EXP
45 pattern: '{all-files-regexp}'
46 - project-compare-type: REG_EXP
47 project-pattern: '{other-docs-repos-regexp}'
48 branches:
49 - branch-compare-type: REG_EXP
50 branch-pattern: '{branch-regexp}'
51 file-paths:
52 - compare-type: REG_EXP
53 pattern: '{doc-files-regexp}'
Kailash Khalasi21dc6192018-05-31 08:44:13 -070054 file-paths:
55 - compare-type: REG_EXP
56 pattern: '.*\.md'
Zack Williams7468c362018-04-06 09:52:30 -070057
58 properties:
59 - cord-infra-properties:
60 build-days-to-keep: '{build-days-to-keep}'
61 artifact-num-to-keep: '{artifact-num-to-keep}'
62
63 wrappers:
64 - lf-infra-wrappers:
65 build-timeout: '{build-timeout}'
66 jenkins-ssh-credential: '{jenkins-ssh-credential}'
67
68 scm:
69 - cord-infra-gerrit-repo-scm:
Zack Williamsc27ca2d2018-04-11 13:16:45 -070070 manifest-url: '{gerrit-server-url}/{cord-repo-manifest}'
Zack Williams7468c362018-04-06 09:52:30 -070071 branch: '$GERRIT_BRANCH'
72 destination-dir: 'cord'
73
74 node: '{build-node}'
75 project-type: freestyle
76 concurrent: false
77
78 builders:
79 - cord-infra-gerrit-repo-patch:
Zack Williamsc27ca2d2018-04-11 13:16:45 -070080 destination-dir: 'cord'
Zack Williams7468c362018-04-06 09:52:30 -070081 project: '$GERRIT_PROJECT'
82 change-number: '$GERRIT_CHANGE_NUMBER'
83 patchset-number: '$GERRIT_PATCHSET_NUMBER'
84 - shell: |
Zack Williamsbf4cfe52018-05-14 16:29:57 -070085 cd cord/docs
Zack Williams7468c362018-04-06 09:52:30 -070086 make test
87
Zack Williams7468c362018-04-06 09:52:30 -070088- job-template:
Kailash Khalasica590552018-05-24 15:09:42 -070089 id: publish-documentation
90 name: 'publish-documentation'
91
92 triggers:
Zack Williams9a021d72018-05-25 16:59:25 -070093 - gerrit:
94 server-name: '{gerrit-server-name}'
Kailash Khalasica590552018-05-24 15:09:42 -070095 dependency-jobs: '{dependency-jobs}'
Zack Williams9a021d72018-05-25 16:59:25 -070096 silent-start: true
97 trigger-on:
98 - change-merged-event
99 projects:
100 - project-compare-type: PLAIN
101 project-pattern: 'docs'
102 branches:
103 - branch-compare-type: REG_EXP
104 branch-pattern: '{branch-regexp}'
105 file-paths:
106 - compare-type: REG_EXP
107 pattern: '{all-files-regexp}'
108 - project-compare-type: REG_EXP
109 project-pattern: '{other-docs-repos-regexp}'
110 branches:
111 - branch-compare-type: REG_EXP
112 branch-pattern: '{branch-regexp}'
113 file-paths:
114 - compare-type: REG_EXP
115 pattern: '{doc-files-regexp}'
Kailash Khalasica590552018-05-24 15:09:42 -0700116
117 properties:
118 - cord-infra-properties:
119 build-days-to-keep: '{build-days-to-keep}'
120 artifact-num-to-keep: '{artifact-num-to-keep}'
121
122 wrappers:
123 - lf-infra-wrappers:
124 build-timeout: '{build-timeout}'
125 jenkins-ssh-credential: '{jenkins-ssh-credential}'
126
127 scm:
128 - cord-infra-gerrit-repo-scm:
129 manifest-url: '{gerrit-server-url}/{cord-repo-manifest}'
130 branch: '$GERRIT_BRANCH'
131 destination-dir: 'cord'
132
133 node: '{build-node}'
134 project-type: freestyle
135 concurrent: false
136
137 builders:
138 - shell: |
139 cd cord/docs
140 make build
Luca Prete79bb1ea2018-06-04 11:15:51 +0200141 rsync -rvzh --delete cord/docs/_book/ {docs-ssh-host}:/var/www/guide/$GERRIT_BRANCH
142 rsync -rvzh --delete cord/docs/xos/swagger/ {docs-ssh-host}:/var/www/guide/$GERRIT_BRANCH