3fa3be7ede
Add a check job to require upstream URLs to use a scheme that we are confident won't cause connection errors during the import. Add a tox configuration for this new job, as well as the existing alphabetical check script, to make it easier for developers to run those tests locally just by running "tox". Change-Id: I894ac0f8afb234404bb6e80e64b90aa25e052f10
113 lines
2.0 KiB
YAML
113 lines
2.0 KiB
YAML
- job:
|
|
name: config-compare-xml
|
|
node: bare-precise
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- shell: "./tools/run-compare-xml.sh openstack-infra config"
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
|
|
- job:
|
|
name: gate-config-irc-access
|
|
node: bare-precise
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- tox:
|
|
envlist: 'irc'
|
|
github-org: 'openstack-infra'
|
|
project: 'config'
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
|
|
- job:
|
|
name: gate-config-layout
|
|
node: bare-precise
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- shell: |
|
|
source /usr/local/jenkins/slave_scripts/select-mirror.sh openstack-infra config
|
|
./tools/run-layout.sh openstack-infra config
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
|
|
# This is a non-standard docs job because it uses SCP instead of FTP
|
|
- job:
|
|
name: ci-docs
|
|
node: bare-precise
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- docs:
|
|
github-org: openstack-infra
|
|
project: config
|
|
|
|
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
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- docs:
|
|
github-org: openstack-infra
|
|
project: config
|
|
|
|
publishers:
|
|
- console-log
|
|
- upload-sphinx-draft
|
|
|
|
|
|
- job:
|
|
name: check-projects-yaml-alphabetized
|
|
node: bare-precise
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- tox:
|
|
envlist: projects_alphabetized
|
|
github-org: openstack-infra
|
|
project: config
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
|
|
- job:
|
|
name: check-projects-yaml-upstream
|
|
node: bare-precise
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- tox:
|
|
envlist: upstream
|
|
github-org: openstack-infra
|
|
project: config
|
|
|
|
publishers:
|
|
- console-log
|