project-config/jenkins/jobs/specs-jobs.yaml
Andreas Jaeger 4331f670b4 Print the JJB template name in some more jobs
Print JJB template name in more job templates so that it's easy to
identify them.

Change-Id: Ia92e39d0ac8c7655577e8fa4accde5748f30d5f1
2015-11-26 20:09:53 +01:00

81 lines
1.9 KiB
YAML

# Jobs for the various *-specs repositories
- job-template:
name: '{name}-publish-specs'
node: 'bare-precise || bare-trusty'
# We want to publish to org/name but the scp publisher cannot remove paths,
# so use a shell builder to move the content in the right place and publish
# from there.
builders:
- print-template-name:
template-name: "{template-name}"
- revoke-sudo
- gerrit-git-prep
- docs:
project: '{name}'
- shell: |
mkdir `dirname $ZUUL_PROJECT`
mv doc/build/html $ZUUL_PROJECT
publishers:
- scp:
site: 'static.openstack.org'
files:
- target: 'specs/'
source: '$ZUUL_PROJECT/**'
keep-hierarchy: true
copy-after-failure: false
- console-log
- job-group:
name: specs-jobs
jobs:
- gate-{name}-docs
- gate-{name}-python27
- '{name}-publish-specs'
- builder:
name: generate-specs-site
builders:
- revoke-sudo
- gerrit-git-prep
- tox:
envlist: specs
- job:
name: gate-generate-specs-site
description: Render the specs sites templates without publishing them.
node: 'bare-precise || bare-trusty'
builders:
- generate-specs-site
- job:
name: publish-specs-site
description: Render the specs sites templates and publish them.
node: 'bare-precise || bare-trusty'
builders:
- generate-specs-site
- static-publish-prep:
source: 'specs/output'
publishers:
- scp:
site: 'static.openstack.org'
files:
- target: 'specs/'
source: '**'
keep-hierarchy: true
copy-after-failure: false
- console-log
- job-group:
name: generate-specs-site-jobs
jobs:
- gate-generate-specs-site
- publish-specs-site