Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Start running [Serial] tests in Trusty CI jobs and the release job of Trusty-dev #24066

Merged
merged 1 commit into from
Apr 12, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 21 additions & 0 deletions hack/jenkins/job-configs/kubernetes-jenkins/kubernetes-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -645,6 +645,13 @@
--ginkgo.skip=\[Serial\]|\[Disruptive\]|\[Flaky\]|\[Feature:.+\]"
export GINKGO_PARALLEL="y"
export PROJECT="e2e-gce-trusty-ci-master-slow"
- 'serial-master':
description: 'Run [Serial], [Disruptive], tests on GCE, with Trusty images.'
timeout: 300
job-env: |
export GINKGO_TEST_ARGS="--ginkgo.focus=\[Serial\]|\[Disruptive\] \
--ginkgo.skip=\[Flaky\]|\[Feature:.+\]"
export PROJECT="e2e-gce-trusty-ci-serial"
jobs:
- 'kubernetes-e2e-gce-trusty-ci-{suffix}'

Expand Down Expand Up @@ -675,6 +682,13 @@
--ginkgo.skip=\[Serial\]|\[Disruptive\]|\[Flaky\]|\[Feature:.+\]"
export GINKGO_PARALLEL="y"
export PROJECT="e2e-gce-trusty-ci-slow-1-2"
- 'serial-release-1.2':
description: 'Run [Serial], [Disruptive], tests on GCE, with Trusty images, on the release-1.2 branch.'
timeout: 300
job-env: |
export GINKGO_TEST_ARGS="--ginkgo.focus=\[Serial\]|\[Disruptive\] \
--ginkgo.skip=\[Flaky\]|\[Feature:.+\]"
export PROJECT="e2e-gce-trusty-ci-serial-1-2"
jobs:
- 'kubernetes-e2e-gce-trusty-ci-{suffix}'

Expand Down Expand Up @@ -722,6 +736,13 @@
--ginkgo.skip=\[Serial\]|\[Disruptive\]|\[Flaky\]|\[Feature:.+\]"
export GINKGO_PARALLEL="y"
export PROJECT="k8s-e2e-gce-trusty-dev-slow"
- 'serial':
description: 'Run [Serial], [Disruptive], tests on GCE, with Trusty dev images and the latest k8s 1.2 release.'
timeout: 300
job-env: |
export GINKGO_TEST_ARGS="--ginkgo.focus=\[Serial\]|\[Disruptive\] \
--ginkgo.skip=\[Flaky\]|\[Feature:.+\]"
export PROJECT="e2e-gce-trusty-dev-serial"
jobs:
- 'kubernetes-e2e-gce-trusty-dev-{suffix}'

Expand Down