| --- |
| # CORD documentation verification and publish tasks |
| |
| - project: |
| name: verify-docs |
| |
| jobs: |
| - 'verify-documentation': |
| other-docs-repos-regexp: '.*' |
| branch-regexp: '{modern-branches-regexp}' |
| |
| - project: |
| name: publish-docs |
| |
| jobs: |
| - 'publish-documentation': |
| other-docs-repos-regexp: '.*' |
| branch-regexp: '{modern-branches-regexp}' |
| |
| - job-template: |
| id: verify-documentation |
| name: "verify-documentation" |
| |
| triggers: |
| - gerrit: |
| server-name: '{gerrit-server-name}' |
| dependency-jobs: '{dependency-jobs}' |
| silent-start: true |
| trigger-on: |
| - patchset-created-event: |
| exclude-drafts: true |
| exclude-trivial-rebase: false |
| exclude-no-code-change: true |
| - draft-published-event |
| - comment-added-contains-event: |
| comment-contains-value: '(?i)^.*recheck$' |
| projects: |
| - project-compare-type: PLAIN |
| project-pattern: 'docs' |
| branches: |
| - branch-compare-type: REG_EXP |
| branch-pattern: '{branch-regexp}' |
| file-paths: |
| - compare-type: REG_EXP |
| pattern: '{all-files-regexp}' |
| - project-compare-type: REG_EXP |
| project-pattern: '{other-docs-repos-regexp}' |
| branches: |
| - branch-compare-type: REG_EXP |
| branch-pattern: '{branch-regexp}' |
| file-paths: |
| - compare-type: REG_EXP |
| pattern: '{doc-files-regexp}' |
| - compare-type: REG_EXP |
| pattern: '.*\.md' |
| |
| properties: |
| - cord-infra-properties: |
| build-days-to-keep: '{build-days-to-keep}' |
| artifact-num-to-keep: '{artifact-num-to-keep}' |
| |
| wrappers: |
| - lf-infra-wrappers: |
| build-timeout: '{build-timeout}' |
| jenkins-ssh-credential: '{jenkins-ssh-credential}' |
| |
| scm: |
| - cord-infra-gerrit-repo-scm: |
| manifest-url: '{gerrit-server-url}/{cord-repo-manifest}' |
| branch: '$GERRIT_BRANCH' |
| destination-dir: 'cord' |
| |
| node: '{build-node}' |
| project-type: freestyle |
| concurrent: false |
| |
| builders: |
| - cord-infra-gerrit-repo-patch: |
| destination-dir: 'cord' |
| project: '$GERRIT_PROJECT' |
| change-number: '$GERRIT_CHANGE_NUMBER' |
| patchset-number: '$GERRIT_PATCHSET_NUMBER' |
| - shell: | |
| cd cord/docs |
| make test |
| |
| - job-template: |
| id: publish-documentation |
| name: 'publish-documentation' |
| |
| triggers: |
| - gerrit: |
| server-name: '{gerrit-server-name}' |
| dependency-jobs: '{dependency-jobs}' |
| silent-start: true |
| trigger-on: |
| - change-merged-event |
| projects: |
| - project-compare-type: PLAIN |
| project-pattern: 'docs' |
| branches: |
| - branch-compare-type: REG_EXP |
| branch-pattern: '{branch-regexp}' |
| file-paths: |
| - compare-type: REG_EXP |
| pattern: '{all-files-regexp}' |
| - project-compare-type: REG_EXP |
| project-pattern: '{other-docs-repos-regexp}' |
| branches: |
| - branch-compare-type: REG_EXP |
| branch-pattern: '{branch-regexp}' |
| file-paths: |
| - compare-type: REG_EXP |
| pattern: '{doc-files-regexp}' |
| - compare-type: REG_EXP |
| pattern: '.*\.md' |
| |
| properties: |
| - cord-infra-properties: |
| build-days-to-keep: '{build-days-to-keep}' |
| artifact-num-to-keep: '{artifact-num-to-keep}' |
| |
| wrappers: |
| - lf-infra-wrappers: |
| build-timeout: '{build-timeout}' |
| jenkins-ssh-credential: '{jenkins-ssh-credential}' |
| |
| scm: |
| - cord-infra-gerrit-repo-scm: |
| manifest-url: '{gerrit-server-url}/{cord-repo-manifest}' |
| branch: '$GERRIT_BRANCH' |
| destination-dir: 'cord' |
| |
| node: '{build-node}' |
| project-type: freestyle |
| concurrent: false |
| |
| builders: |
| - shell: | |
| #!/usr/bin/env bash |
| |
| # Set up the ssh host keys for the docs host |
| mkdir -p ~/.ssh |
| echo '{docs-ssh-host-key}' >> ~/.ssh/known_hosts |
| |
| # build the docs |
| cd cord/docs |
| make build |
| |
| # copy swagger REST API docs first, then exclude deleting them when copying rest of guide |
| rsync -rvzh --delete _book/ {docs-ssh-host}:/var/www/guide/$GERRIT_BRANCH |
| rsync -rvzh --delete xos/swagger/ {docs-ssh-host}:/var/www/guide/$GERRIT_BRANCH/swagger |
| |