2014-11-17 15:47:17 -05:00
|
|
|
# Devstack unit tests are run via a set of shell scripts with the
|
|
|
|
# run_tests.sh entry point
|
|
|
|
- job:
|
|
|
|
name: gate-devstack-unit-tests
|
|
|
|
node: 'bare-precise || bare-trusty'
|
|
|
|
|
|
|
|
builders:
|
|
|
|
- revoke-sudo
|
|
|
|
- gerrit-git-prep
|
|
|
|
- shell: |
|
|
|
|
#!/bin/bash -xe
|
|
|
|
./run_tests.sh
|
|
|
|
|
|
|
|
publishers:
|
|
|
|
- console-log
|
2014-12-16 10:45:57 +11:00
|
|
|
- zuul-swift-upload-console-log
|
2014-11-17 15:47:17 -05:00
|
|
|
|
2014-10-07 22:18:59 +02:00
|
|
|
# Devstack does not support "python setup.py publish_sphinx", thus
|
|
|
|
# we cannot use the normal docs jobs.
|
|
|
|
- job:
|
|
|
|
name: devstack-publish-docs
|
|
|
|
node: 'bare-precise || bare-trusty'
|
|
|
|
|
|
|
|
builders:
|
|
|
|
- revoke-sudo
|
|
|
|
- gerrit-git-prep
|
|
|
|
- tox:
|
|
|
|
envlist: 'docs'
|
|
|
|
|
|
|
|
publishers:
|
|
|
|
- ftp:
|
|
|
|
site: 'docs.openstack.org'
|
|
|
|
source: 'doc/build/html/**'
|
|
|
|
target: 'developer/devstack'
|
2014-10-15 08:27:45 +02:00
|
|
|
remove-prefix: 'doc/build/html'
|
2014-10-07 22:18:59 +02:00
|
|
|
excludes: ''
|
|
|
|
- console-log
|
2014-12-16 10:45:57 +11:00
|
|
|
- zuul-swift-upload-console-log
|
2014-10-07 22:18:59 +02:00
|
|
|
|
|
|
|
- job:
|
|
|
|
name: gate-devstack-publish-docs
|
2014-10-15 08:27:45 +02:00
|
|
|
node: 'bare-precise || bare-trusty'
|
2014-10-07 22:18:59 +02:00
|
|
|
|
|
|
|
builders:
|
|
|
|
- revoke-sudo
|
|
|
|
- gerrit-git-prep
|
|
|
|
- tox:
|
|
|
|
envlist: 'docs'
|
|
|
|
|
|
|
|
publishers:
|
|
|
|
- console-log
|
|
|
|
- upload-sphinx-draft
|
2014-12-16 10:45:57 +11:00
|
|
|
- zuul-swift-upload-console-log
|
2014-12-09 14:41:24 +11:00
|
|
|
# TODO(jhesketh): Add job for uploading built docs
|