6da143d2cd
We have some headroom on the logs filesystem and this allows us to go back to more reliable methods of grabbing logs. Specifically we are not required to have http access back to the jenkins master from every job that runs into order to get the console logs then upload them to swift. Change-Id: Ie8479c224b2fd3c3efca4e1bf4157656540eccff
38 lines
844 B
YAML
38 lines
844 B
YAML
# Grenade does not support "python setup.py publish_sphinx", thus
|
|
# we cannot use the normal docs jobs.
|
|
- job:
|
|
name: grenade-publish-docs
|
|
node: ubuntu-trusty
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- install-distro-packages
|
|
- revoke-sudo
|
|
- tox:
|
|
envlist: 'docs'
|
|
|
|
publishers:
|
|
- ftp:
|
|
site: 'docs.openstack.org'
|
|
source: 'doc/build/html/**'
|
|
target: 'developer/grenade'
|
|
remove-prefix: 'doc/build/html'
|
|
excludes: ''
|
|
- console-log
|
|
|
|
- job:
|
|
name: gate-grenade-publish-docs
|
|
node: ubuntu-trusty
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- install-distro-packages
|
|
- revoke-sudo
|
|
- tox:
|
|
envlist: 'docs'
|
|
|
|
publishers:
|
|
- console-log
|
|
- upload-sphinx-draft
|
|
# TODO(jhesketh): Add job for uploading built docs
|