Add console log copying to all jobs.
Change-Id: I46156c36b619a098b8a3f9c6d156ef2fae4e2c52 Reviewed-on: https://review.openstack.org/11683 Reviewed-by: Monty Taylor <mordred@inaugust.com> Approved: James E. Blair <corvus@inaugust.com> Tested-by: Jenkins
This commit is contained in:
parent
8394406bf1
commit
16288858be
@ -21,6 +21,9 @@
|
||||
- gerrit-git-prep
|
||||
- python26-essex
|
||||
|
||||
publishers:
|
||||
- console-log
|
||||
|
||||
# >= precise does not have python2.6
|
||||
node: oneiric
|
||||
|
||||
@ -48,4 +51,7 @@
|
||||
- gerrit-git-prep
|
||||
- python27-essex
|
||||
|
||||
publishers:
|
||||
- console-log
|
||||
|
||||
node: oneiric
|
||||
|
@ -59,6 +59,16 @@
|
||||
publishers:
|
||||
- archive:
|
||||
artifacts: logs/*
|
||||
- scp:
|
||||
site: 'static.openstack.org'
|
||||
files:
|
||||
- target: 'logs/$ZUUL_CHANGE/$ZUUL_PATCHSET/$ZUUL_PIPELINE/$JOB_NAME/$BUILD_NUMBER'
|
||||
source: 'logs/*'
|
||||
keep-hierarchy: true
|
||||
copy-after-failure: true
|
||||
- target: 'logs/$ZUUL_CHANGE/$ZUUL_PATCHSET/$ZUUL_PIPELINE/$JOB_NAME/$BUILD_NUMBER'
|
||||
copy-console: true
|
||||
copy-after-failure: true
|
||||
- trigger-parameterized-builds:
|
||||
- project: devstack-update-complete
|
||||
when: complete
|
||||
@ -128,6 +138,16 @@
|
||||
publishers:
|
||||
- archive:
|
||||
artifacts: logs/*
|
||||
- scp:
|
||||
site: 'static.openstack.org'
|
||||
files:
|
||||
- target: 'logs/$ZUUL_CHANGE/$ZUUL_PATCHSET/$ZUUL_PIPELINE/$JOB_NAME/$BUILD_NUMBER'
|
||||
source: 'logs/*'
|
||||
keep-hierarchy: true
|
||||
copy-after-failure: true
|
||||
- target: 'logs/$ZUUL_CHANGE/$ZUUL_PATCHSET/$ZUUL_PIPELINE/$JOB_NAME/$BUILD_NUMBER'
|
||||
copy-console: true
|
||||
copy-after-failure: true
|
||||
- trigger-parameterized-builds:
|
||||
- project: devstack-update-complete
|
||||
when: complete
|
||||
@ -192,6 +212,16 @@
|
||||
publishers:
|
||||
- archive:
|
||||
artifacts: logs/*
|
||||
- scp:
|
||||
site: 'static.openstack.org'
|
||||
files:
|
||||
- target: 'logs/periodic/$JOB_NAME/$BUILD_NUMBER'
|
||||
source: 'logs/*'
|
||||
keep-hierarchy: true
|
||||
copy-after-failure: true
|
||||
- target: 'logs/periodic/$JOB_NAME/$BUILD_NUMBER'
|
||||
copy-console: true
|
||||
copy-after-failure: true
|
||||
- trigger-parameterized-builds:
|
||||
- project: devstack-update-complete
|
||||
when: complete
|
||||
@ -256,6 +286,16 @@
|
||||
publishers:
|
||||
- archive:
|
||||
artifacts: logs/*
|
||||
- scp:
|
||||
site: 'static.openstack.org'
|
||||
files:
|
||||
- target: 'logs/periodic/$JOB_NAME/$BUILD_NUMBER'
|
||||
source: 'logs/*'
|
||||
keep-hierarchy: true
|
||||
copy-after-failure: true
|
||||
- target: 'logs/periodic/$JOB_NAME/$BUILD_NUMBER'
|
||||
copy-console: true
|
||||
copy-after-failure: true
|
||||
- trigger-parameterized-builds:
|
||||
- project: devstack-update-complete
|
||||
when: complete
|
||||
|
@ -30,6 +30,7 @@
|
||||
site: 'nova.openstack.org'
|
||||
warfile: 'gerrit-war/target/gerrit*.war'
|
||||
target: 'tarballs/ci/test/'
|
||||
- console-log
|
||||
|
||||
|
||||
- job:
|
||||
@ -59,6 +60,8 @@
|
||||
postbuilders:
|
||||
- gerrit-postrun
|
||||
|
||||
publishers:
|
||||
- console-log
|
||||
|
||||
- job:
|
||||
name: gerrit-package
|
||||
@ -92,3 +95,4 @@
|
||||
site: 'nova.openstack.org'
|
||||
warfile: 'gerrit-war/target/gerrit*.war'
|
||||
target: 'tarballs/ci/'
|
||||
- console-log
|
||||
|
@ -21,3 +21,6 @@
|
||||
builders:
|
||||
- gerrit-git-prep
|
||||
- selenium
|
||||
|
||||
publishers:
|
||||
- console-log
|
||||
|
@ -107,8 +107,9 @@
|
||||
artifacts: 'dist/*.tar.gz'
|
||||
- scp:
|
||||
site: '{site}'
|
||||
files:
|
||||
- target: 'tarballs/{project}/'
|
||||
source: 'dist/*.tar.gz'
|
||||
target: 'tarballs/{project}/'
|
||||
|
||||
- publisher:
|
||||
name: war
|
||||
@ -117,8 +118,9 @@
|
||||
artifacts: '{warfile}'
|
||||
- scp:
|
||||
site: '{site}'
|
||||
files:
|
||||
- target: '{target}'
|
||||
source: '{warfile}'
|
||||
target: '{target}'
|
||||
|
||||
- publisher:
|
||||
name: pep8
|
||||
@ -139,3 +141,24 @@
|
||||
max: 1
|
||||
unstable: 1
|
||||
pattern: '**/pylint.txt'
|
||||
|
||||
- publisher:
|
||||
name: console-log
|
||||
publishers:
|
||||
- scp:
|
||||
site: 'static.openstack.org'
|
||||
files:
|
||||
- target: 'logs/$ZUUL_CHANGE/$ZUUL_PATCHSET/$ZUUL_PIPELINE/$JOB_NAME/$BUILD_NUMBER'
|
||||
copy-console: true
|
||||
copy-after-failure: true
|
||||
|
||||
|
||||
- publisher:
|
||||
name: console-log-periodic
|
||||
publishers:
|
||||
- scp:
|
||||
site: 'static.openstack.org'
|
||||
files:
|
||||
- target: 'logs/periodic/$JOB_NAME/$BUILD_NUMBER'
|
||||
copy-console: true
|
||||
copy-after-failure: true
|
||||
|
@ -16,3 +16,6 @@
|
||||
- gerrit-git-prep
|
||||
- puppet-syntax
|
||||
- pyflakes
|
||||
|
||||
publishers:
|
||||
- console-log
|
||||
|
@ -30,6 +30,7 @@
|
||||
target: 'developer/{name}'
|
||||
remove-prefix: 'doc/build/html'
|
||||
excludes: ''
|
||||
- console-log
|
||||
|
||||
|
||||
- job-template:
|
||||
@ -62,6 +63,7 @@
|
||||
- tarball:
|
||||
project: '{name}'
|
||||
site: '{tarball-publisher-site}'
|
||||
- console-log
|
||||
|
||||
|
||||
- job-group:
|
||||
|
@ -33,6 +33,7 @@
|
||||
- tarball:
|
||||
project: '{name}'
|
||||
site: '{tarball-publisher-site}'
|
||||
- console-log
|
||||
|
||||
|
||||
- job-template:
|
||||
@ -58,6 +59,7 @@
|
||||
- tarball:
|
||||
project: '{name}'
|
||||
site: '{tarball-publisher-site}'
|
||||
- console-log
|
||||
|
||||
|
||||
- job-group:
|
||||
|
@ -20,6 +20,9 @@
|
||||
builders:
|
||||
- python26
|
||||
|
||||
publishers:
|
||||
- console-log-periodic
|
||||
|
||||
scm:
|
||||
- git:
|
||||
url: 'git://github.com/{github-org}/{name}.git'
|
||||
@ -52,6 +55,9 @@
|
||||
builders:
|
||||
- python27
|
||||
|
||||
publishers:
|
||||
- console-log-periodic
|
||||
|
||||
scm:
|
||||
- git:
|
||||
url: 'git://github.com/{github-org}/{name}.git'
|
||||
@ -83,6 +89,9 @@
|
||||
builders:
|
||||
- docs
|
||||
|
||||
publishers:
|
||||
- console-log-periodic
|
||||
|
||||
scm:
|
||||
- git:
|
||||
url: 'git://github.com/{github-org}/{name}.git'
|
||||
|
@ -23,6 +23,7 @@
|
||||
|
||||
publishers:
|
||||
- coverage
|
||||
- console-log
|
||||
|
||||
node: '{node}'
|
||||
|
||||
@ -52,6 +53,7 @@
|
||||
|
||||
publishers:
|
||||
- pep8
|
||||
- console-log
|
||||
|
||||
node: '{node}'
|
||||
|
||||
@ -81,6 +83,7 @@
|
||||
|
||||
publishers:
|
||||
- pylint
|
||||
- console-log
|
||||
|
||||
node: '{node}'
|
||||
|
||||
@ -108,6 +111,9 @@
|
||||
- gerrit-git-prep
|
||||
- python26
|
||||
|
||||
publishers:
|
||||
- console-log
|
||||
|
||||
# >= precise does not have python2.6
|
||||
node: oneiric
|
||||
|
||||
@ -141,6 +147,9 @@
|
||||
- gerrit-git-prep
|
||||
- python27
|
||||
|
||||
publishers:
|
||||
- console-log
|
||||
|
||||
node: '{node}'
|
||||
|
||||
|
||||
@ -166,6 +175,9 @@
|
||||
builders:
|
||||
- gerrit-git-prep
|
||||
|
||||
publishers:
|
||||
- console-log
|
||||
|
||||
node: '{node}'
|
||||
|
||||
|
||||
@ -192,6 +204,9 @@
|
||||
- gerrit-git-prep
|
||||
- docs
|
||||
|
||||
publishers:
|
||||
- console-log
|
||||
|
||||
node: '{node}'
|
||||
|
||||
|
||||
@ -220,6 +235,9 @@
|
||||
- gerrit-git-prep
|
||||
- pyflakes
|
||||
|
||||
publishers:
|
||||
- console-log
|
||||
|
||||
|
||||
- job-group:
|
||||
name: python-jobs
|
||||
@ -231,3 +249,4 @@
|
||||
- 'gate-{name}-python27'
|
||||
- 'gate-{name}-docs'
|
||||
# pyflakes isn't standard
|
||||
# pylint isn't standard
|
||||
|
@ -27,6 +27,8 @@
|
||||
publishers:
|
||||
- scp:
|
||||
site: '173.203.107.207'
|
||||
files:
|
||||
- target: 'ci/zuul'
|
||||
source: 'doc/build/html/**/*'
|
||||
target: 'ci/zuul'
|
||||
keep-hierarchy: true
|
||||
- console-log
|
||||
|
Loading…
Reference in New Issue
Block a user