From a6594dc38bbb3a8543f16e27f7e297e7e5b6ed5a Mon Sep 17 00:00:00 2001 From: Zach Loafman Date: Wed, 8 Jul 2015 09:45:16 -0700 Subject: [PATCH] Add skip/flaky arguments for the jenkins-gce-e2e-release job I haven't added the job yet. Want to get the args in place first. Related to #10676 --- hack/jenkins/e2e.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/hack/jenkins/e2e.sh b/hack/jenkins/e2e.sh index 0a47a6e7372..2bd2c41f7ad 100755 --- a/hack/jenkins/e2e.sh +++ b/hack/jenkins/e2e.sh @@ -192,6 +192,19 @@ case ${JOB_NAME} in MINION_SIZE="n1-standard-1" NUM_MINIONS="2" ;; + + # Runs non-flaky tests on GCE on the release-latest branch, + # sequentially. As a reminder, if you need to change the skip list + # or flaky test list on the release branch, you'll need to propose a + # pull request directly to the release branch itself. + kubernetes-e2e-gce-release) + : ${E2E_CLUSTER_NAME:="jenkins-gce-e2e-release"} + : ${E2E_DOWN:="false"} + : ${E2E_NETWORK:="e2e-gce-release"} + : ${GINKGO_TEST_ARGS:="--ginkgo.skip=${GCE_DEFAULT_SKIP_TEST_REGEX}|${GCE_FLAKY_TEST_REGEX}"} + : ${KUBE_GCE_INSTANCE_PREFIX="e2e-gce"} + : ${PROJECT:="k8s-jkns-e2e-gce-release"} + ;; esac # AWS variables