project-config/jenkins/jobs/specs-jobs.yaml
Andreas Jaeger 3298dd648e Always use gate- instead of check- (m-s*)
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/[m-s]*
(excluding projects.yaml).

Change-Id: Ib75f491924d75f4892a0ff2e4871b40c6e56522b
2015-07-14 20:08:56 +02:00

79 lines
1.8 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:
- 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