b1774fded0
We need to make sure that jenkins will run jobs on bare-trusty before we can migrate and projects to bare-trusty. So do the initial JJB prep now, then we can do a project at a time. Change-Id: I6e80567730bff8d387d8a5b87d7368ea3be6d3ab
35 lines
871 B
YAML
35 lines
871 B
YAML
# This is a non-standard docs job because it uses SCP instead of FTP
|
|
- job:
|
|
name: jenkins-job-builder-docs
|
|
node: 'bare-precise || bare-trusty'
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- docs:
|
|
github-org: openstack-infra
|
|
project: jenkins-job-builder
|
|
|
|
publishers:
|
|
- scp:
|
|
site: '173.203.107.207'
|
|
files:
|
|
- target: 'ci/jenkins-job-builder'
|
|
source: 'doc/build/html/**/*'
|
|
keep-hierarchy: true
|
|
- console-log
|
|
|
|
- job:
|
|
name: jenkins-job-builder-compare-xml
|
|
node: 'bare-precise || bare-trusty'
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- shell: |
|
|
source /usr/local/jenkins/slave_scripts/select-mirror.sh openstack-infra jenkins-job-builder
|
|
./tools/run-compare-xml.sh
|
|
|
|
publishers:
|
|
- console-log
|