a584363a4e
Across the entirety of our job config corpus, we only ever set the doc-publisher-site parameter to docs.openstack.org. Instead just set it directly in the publishers where it's needed and reduce unwarranted confusion for people writing job configs. Change-Id: I87a17ee7de618361f12a025d23629b7d5d711810
100 lines
2.5 KiB
YAML
100 lines
2.5 KiB
YAML
- job-template:
|
|
name: '{name}-infra-docs'
|
|
node: 'ubuntu-xenial'
|
|
|
|
builders:
|
|
- print-template-name:
|
|
template-name: "{template-name}"
|
|
- gerrit-git-prep
|
|
- install-distro-packages
|
|
- revoke-sudo
|
|
- docs
|
|
|
|
publishers:
|
|
- ftp:
|
|
site: docs.openstack.org
|
|
source: 'doc/build/html/**'
|
|
target: 'infra/{doc-publisher-folder}'
|
|
remove-prefix: 'doc/build/html'
|
|
excludes: ''
|
|
- afs:
|
|
site: 'afs-docs'
|
|
source: 'doc/build/html/**'
|
|
target: 'infra/{doc-publisher-folder}'
|
|
remove-prefix: 'doc/build/html'
|
|
- console-log
|
|
|
|
- job-template:
|
|
name: '{name}-infra-docs-tags-only'
|
|
description: Publish infra documents, use when only publish on tag
|
|
node: ubuntu-xenial
|
|
|
|
builders:
|
|
- print-template-name:
|
|
template-name: "{template-name}"
|
|
- gerrit-git-prep
|
|
- install-distro-packages
|
|
- revoke-sudo
|
|
- docs-tags-only-env:
|
|
env: venv
|
|
|
|
publishers:
|
|
- ftp:
|
|
site: docs.openstack.org
|
|
source: 'doc/build/html/**'
|
|
target: 'infra/{doc-publisher-folder}'
|
|
remove-prefix: 'doc/build/html'
|
|
excludes: ''
|
|
- afs:
|
|
site: 'afs-docs'
|
|
source: 'doc/build/html/**'
|
|
target: 'infra/{doc-publisher-folder}'
|
|
remove-prefix: 'doc/build/html'
|
|
- console-log
|
|
|
|
- job:
|
|
name: publish-infra-docs-index
|
|
description: Render and publish the infra docs index.
|
|
node: ubuntu-xenial
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- install-distro-packages
|
|
- revoke-sudo
|
|
- run-tox:
|
|
envlist: infra-docs
|
|
|
|
publishers:
|
|
- ftp:
|
|
site: docs.openstack.org
|
|
source: 'docs-site/output/index.html'
|
|
target: 'infra/'
|
|
remove-prefix: 'docs-site/output/'
|
|
- afs:
|
|
site: 'afs-docs'
|
|
source: 'docs-site/output/index.html'
|
|
target: 'infra/'
|
|
remove-prefix: 'docs-site/output/'
|
|
- console-log
|
|
|
|
- job:
|
|
name: gate-infra-docs-index
|
|
description: Render the infra docs index without publishing it.
|
|
node: ubuntu-xenial
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- install-distro-packages
|
|
- revoke-sudo
|
|
- run-tox:
|
|
envlist: infra-docs
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
- job-group:
|
|
name: infra-publish-jobs
|
|
jobs:
|
|
- '{name}-infra-docs'
|
|
- '{name}-infra-docs-tags-only'
|