system-config/modules/openstack_project/files/jenkins_job_builder/config/infra.yaml
Monty Taylor da1465db09 Make the alphabetized check self-gating
When putting the alphabetize script into slave_scripts, we run the risk
of bugs entering the script without being tested before they are rolled
live and become part of the gate. This just recently happened. Instead,
move it to the tools dir, which makes it easy for a dev to run, and also
which makes changes to the script self-gating.

Change-Id: Ia5e1870f84b0cbc0c6f172b6982263440af5575e
2014-01-26 09:32:44 -08:00

73 lines
1.4 KiB
YAML

- job:
name: config-compare-xml
node: bare-precise
builders:
- gerrit-git-prep
- shell: "./tools/run-compare-xml.sh openstack-infra config"
publishers:
- console-log
- job:
name: gate-config-layout
node: bare-precise
builders:
- 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:
- 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:
- 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:
- gerrit-git-prep
- shell: "tools/check_projects_yaml_alphabetized.sh"
publishers:
- console-log