James E. Blair ef40ea5b5d Remove concurrency restriction from all jobs
We can't guarantee that with 8 jenkins masters anymore anyway, and
this can cause problems if Jenkins gets stuck on a job; all other
jobs scheduled on the same master will wait for it.

Change-Id: Ifb20b6819e5f27da449f2a46d463a29b43695f18
2014-03-11 09:09:11 -07:00

42 lines
843 B
YAML

- job-template:
name: '{name}-docs'
node: bare-precise
builders:
- gerrit-git-prep
- docs:
github-org: '{github-org}'
project: '{name}'
publishers:
- ftp:
site: '{doc-publisher-site}'
source: 'doc/build/html/**'
target: 'developer/{name}'
remove-prefix: 'doc/build/html'
excludes: ''
- console-log
- job-template:
name: '{name}-merge-release-tags'
builders:
- gerrit-git-prep
- shell: |
#!/bin/bash -xe
TAG=`echo $ZUUL_REFNAME | sed 's/refs.tags.//'`
/usr/local/jenkins/slave_scripts/merge_tags.sh $TAG
publishers:
- console-log
node: 'proposal'
- job-group:
name: openstack-publish-jobs
jobs:
- '{name}-docs'
- '{name}-merge-release-tags'