
Make module installation conditional in install_modules.sh so that we can specify that we _do not_ want it to install the modules that will be participating in the integration test. Add a variant of the apply test script (currently test.sh) that uses zuul-cloner to check out the appropriate versions of modules that are participating in the integration test. Add jobs that run this to the experimental pipeline. Change-Id: I16055cdd45f6e05aa8ebceb500c5709f265268df
134 lines
2.3 KiB
YAML
134 lines
2.3 KiB
YAML
- job:
|
|
name: config-compare-xml
|
|
node: 'bare-precise || bare-trusty'
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- shell: ./tools/run-compare-xml.sh
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
|
|
- job:
|
|
name: gate-config-irc-access
|
|
node: 'bare-precise || bare-trusty'
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- tox:
|
|
envlist: 'irc'
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
|
|
- job:
|
|
name: gate-config-layout
|
|
node: 'bare-precise || bare-trusty'
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- shell: |
|
|
./tools/run-layout.sh
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
|
|
# This is a non-standard docs job because it uses SCP instead of FTP
|
|
- job:
|
|
name: ci-docs
|
|
node: 'bare-precise || bare-trusty'
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- docs
|
|
|
|
publishers:
|
|
- scp:
|
|
site: '173.203.107.207'
|
|
files:
|
|
- target: 'ci'
|
|
source: 'doc/build/html/**/*'
|
|
keep-hierarchy: true
|
|
- console-log
|
|
|
|
|
|
- job:
|
|
name: gate-ci-docs
|
|
node: 'bare-precise || bare-trusty'
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- docs
|
|
|
|
publishers:
|
|
- console-log
|
|
- upload-sphinx-draft
|
|
|
|
|
|
- job:
|
|
name: check-projects-yaml-alphabetized
|
|
node: 'bare-precise || bare-trusty'
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- tox:
|
|
envlist: projects_alphabetized
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
|
|
- job:
|
|
name: check-projects-yaml-upstream
|
|
node: 'bare-precise || bare-trusty'
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- tox:
|
|
envlist: upstream
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
|
|
- job:
|
|
name: gate-config-projects-yaml
|
|
node: 'bare-precise || bare-trusty'
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- tox:
|
|
envlist: projects
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
- builder:
|
|
name: infra-puppet-apply
|
|
builders:
|
|
|
|
- job-template:
|
|
name: 'gate-infra-puppet-apply-{ostype}'
|
|
node: 'bare-{ostype}'
|
|
|
|
builders:
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
/usr/zuul-env/bin/zuul-cloner --cache-dir /opt/git git://git.openstack.org openstack-infra/config
|
|
cd openstack-infra/config
|
|
./tools/apply-test.sh
|
|
|
|
publishers:
|
|
- console-log
|