Skip to content

Commit

Permalink
Jenkins: Add the ability to selectively disable an e2e job
Browse files Browse the repository at this point in the history
Also, disable kubernetes-e2e-gce-trusty-dev-slow for now as it is failing
constantly due to a known issue.
  • Loading branch information
wonderfly committed Mar 11, 2016
1 parent c9b3b00 commit 87b3eee
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions hack/jenkins/job-configs/global.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
# Default email recipients are set in Jenkins global config
- defaults:
name: global
disable_job: false
emails: '$DEFAULT_RECIPIENTS'
cron-string: 'H/30 * * * *'
# How long to wait after sending TERM to send KILL (minutes)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
description: '{description} Test owner: {test-owner}.'
logrotate:
daysToKeep: 7
disabled: false
disabled: '{obj:disable_job}'
builders:
- shell: |
{provider-env}
Expand Down Expand Up @@ -479,6 +479,9 @@
description: 'Run slow E2E tests on latest Trusty build.'
timeout: 270
- 'dev-slow':
# Constantly failing due to a known issue of the image. Disabled
# until the issue is resolved.
disable_job: true
description: 'Run slow E2E tests on latest Trusty dev build.'
timeout: 270
- 'beta-slow':
Expand Down

0 comments on commit 87b3eee

Please sign in to comment.