zuul-website/.zuul.yaml
James E. Blair 837932779d Add initial website content and jobs
Add an initial website based on the arcana template from html5up,
which is CC-BY licensed.

It includes some initial content about Zuul, but is mostly intended
to bootstrap the process of collaboratively editing the site.  All
of the content in this repo should generally be CC-BY licensed as
well.

The banner image was created by me in my personal capacity, and it
is also licensed CC-BY.

This includes jobs to publish draft and final versions of the website,
including the production secret needed to publish to afs.

Change-Id: I994fea62061acb34037de1da27e90f2a09df4e74
Depends-On: https://review.openstack.org/538345
2018-01-26 13:45:13 -08:00

32 lines
696 B
YAML

- job:
name: zuul-website-build
description: |
Publishes a draft version of the Zuul website.
success-url: html/
run: playbooks/build-site.yaml
post-run: playbooks/publish-draft-site.yaml
nodeset:
nodes: []
- job:
name: zuul-website-publish
parent: publish-zuul-website
description: |
Publishes the Zuul website.
protected: True # Only run this job in this repo
run: playbooks/build-site.yaml
post-run: playbooks/publish-site.yaml
nodeset:
nodes: []
- project:
check:
jobs:
- zuul-website-build
gate:
jobs:
- zuul-website-build
post:
jobs:
- zuul-website-publish