project-config/jenkins/jobs/infra-publish-jobs.yaml
Andreas Jaeger 4a572e299a Always use gate- instead of check- (f-k*)
Change pipeline name to only use "gate", we do not need the
differentiation between check and gate anymore.

This changes the pipelines configured via files in jenkins/jobs/[f-k]*.

Change-Id: I4452141ad9ce0bb5e429d9d0e1a3e37c8303fb25
2015-07-14 17:35:12 +02:00

56 lines
1.2 KiB
YAML

- job-template:
name: '{name}-infra-docs'
node: '{node}'
builders:
- revoke-sudo
- gerrit-git-prep
- docs
publishers:
- console-log
- ftp:
site: '{doc-publisher-site}'
source: 'doc/build/html/**'
target: 'infra/{doc-publisher-folder}'
remove-prefix: 'doc/build/html'
excludes: ''
- job:
name: publish-infra-docs-index
description: Render and publish the infra docs index.
node: bare-trusty
builders:
- revoke-sudo
- gerrit-git-prep
- tox:
envlist: infra-docs
publishers:
- ftp:
site: docs.openstack.org
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: bare-trusty
builders:
- revoke-sudo
- gerrit-git-prep
- tox:
envlist: infra-docs
publishers:
- console-log
- job-group:
name: infra-publish-jobs
jobs:
- '{name}-infra-docs'