Jeremy Stanley 3d8b647a70 Run most non-sensitive jobs on single-use workers
* doc/source/jjb.rst
* doc/source/stackforge.rst: Update examples to recommend
bare-precise nodes in new job configuration.

* modules/openstack_project/files/jenkins_job_builder/config/*.yaml:
Change the node label for all jobs opreviously using precise to use
bare-precise instead.

* modules/openstack_project/files/zuul/layout.yaml: Get rid of the
transitional matches for setting the single use parameter function
on specific job names and just set it on everything as a default.
Add patterns for jobs which need long-running slaves to apply a
reusable node parameter function instead.

* modules/openstack_project/files/zuul/openstack_functions.py: Add a
parameter function for reusable nodes which refrains from enabling
auto-offline behavior.

* modules/openstack_project/templates/nodepool/nodepool.yaml.erb:
Double the minimum ready bare-precise nodes to accommodate
additional load.

Change-Id: I2a90c5b120a50bb8033c891702185f054ee84d35
2014-02-18 17:50:49 +00:00

137 lines
4.2 KiB
YAML

# in zuul/layout.yaml specified to only run against stable/grizzly
- job:
name: gate-openstack-manuals-validate
node: bare-precise
builders:
- gerrit-git-prep
- shell: "./tools/validate.py"
publishers:
- console-log
# in zuul/layout.yaml specified to only run against master branch.
- job:
name: openstack-docs-site
concurrent: false
node: bare-precise
builders:
- gerrit-git-prep
publishers:
- ftp:
site: docs.openstack.org
source: 'www/**'
target: ''
remove-prefix: 'www/'
excludes: ''
- console-log
# in zuul/layout.yaml specified to only run against master branch.
# The old jenkins config polled git every 5 minutes and was also triggered
# whenever a SNAPSHOT dependency was built. I have not configured that trigger
# here as being in the Zuul post queue may not play nice with that.
#
# We can use the git and snapshot dependency triggers if that is preferable.
- job:
name: openstack-ha-guide
project-type: maven
concurrent: false
node: bare-precise
properties:
- inject:
script-file: /usr/local/jenkins/slave_scripts/docbook-properties.sh
properties-file: gerrit-doc.properties
prebuilders:
- gerrit-git-prep
- shell: |
asciidoc -b docbook -d book -o - doc/high-availability-guide/ha-guide.txt | xsltproc -o - /usr/share/xml/docbook/stylesheet/docbook5/db4-upgrade.xsl - | xmllint --format - | sed -e 's,<book,<book xml:id="bk-ha-guide",' | sed -e 's,<info,<?rax pdf.url="../openstack-ha-guide-trunk.pdf"?><info,' > doc/high-availability-guide/bk-ha-guide.xml
maven:
maven-name: Maven3
root-module:
group-id: org.openstack.docs
artifact-id: openstack-guide
root-pom: doc/high-availability-guide/pom.xml
goals: 'clean generate-sources -B'
publishers:
- console-log
- ftp:
site: docs.openstack.org
source: 'doc/high-availability-guide/target/docbkx/webhelp/**'
target: ''
remove-prefix: 'doc/high-availability-guide/target/docbkx/webhelp/'
excludes: '**/*.xml,**/null*'
- ftp:
site: docs.openstack.org
source: 'doc/high-availability-guide/target/docbkx/webhelp/**/atom.xml'
target: ''
remove-prefix: 'doc/high-availability-guide/target/docbkx/webhelp/'
- job:
name: openstack-operations-guide
project-type: maven
concurrent: false
node: bare-precise
properties:
- inject:
script-file: /usr/local/jenkins/slave_scripts/docbook-properties.sh
properties-file: gerrit-doc.properties
prebuilders:
- gerrit-git-prep
maven:
maven-name: Maven3
root-module:
group-id: org.openstack.docs
artifact-id: openstack-guide
root-pom: doc/openstack-ops/pom.xml
goals: '-Drelease.path.name=${DOC_RELEASE_PATH} -Dcomments.enabled=${DOC_COMMENTS_ENABLED} clean generate-sources -B'
publishers:
- console-log
- ftp:
site: docs.openstack.org
source: 'doc/openstack-ops/target/docbkx/webhelp/**'
target: '/'
remove-prefix: 'doc/openstack-ops/target/docbkx/webhelp/'
excludes: '**/*.xml,**/null*'
- ftp:
site: docs.openstack.org
source: 'doc/openstack-ops/target/docbkx/webhelp/**/atom.xml'
target: ''
remove-prefix: 'doc/openstack-ops/target/docbkx/webhelp/'
- job-template:
name: 'openstack-operations-guide-{lang}'
concurrent: false
node: bare-precise
github-org: openstack
properties:
- inject:
script-file: /usr/local/jenkins/slave_scripts/docbook-properties.sh
properties-file: gerrit-doc.properties
builders:
- gerrit-git-prep
- shell: |
#!/bin/bash -xe
source /usr/local/jenkins/slave_scripts/select-mirror.sh openstack openstack-ops
tox -v -e buildlang -- {lang}
publishers:
- console-log
- ftp:
site: docs.openstack.org
source: 'publish-docs/{lang}/**'
target: '/{lang}/'
remove-prefix: 'publish-docs/{lang}/'
excludes: '**/*.xml,**/null*'