From 0af2ad3deec772653681e1b940e0c3f755a4b286 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Tue, 2 Nov 2021 10:17:51 +0100 Subject: [PATCH] chore(ci): disable E2E tests in Beats (#28715) * chore(ci): disable E2E tests in Beats At least until latest breaking changes in Kibana affecting Package Registry are resolved * chore(ci): disable E2E tests in packaging job too --- .ci/packaging.groovy | 3 ++- Jenkinsfile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.ci/packaging.groovy b/.ci/packaging.groovy index 7c4ce7b5e8fa..d8d9d2af80d4 100644 --- a/.ci/packaging.groovy +++ b/.ci/packaging.groovy @@ -246,7 +246,8 @@ pipeline { agent { label 'ubuntu-18 && immutable' } options { skipDefaultCheckout() } steps { - runE2ETests() + log(level: 'WARN', text: "E2E Tests for Beats are disabled until latest breaking changes in Kibana affecting Package Registry are resolved.") + //runE2ETests() } } } diff --git a/Jenkinsfile b/Jenkinsfile index 6c1fb0dbcb3e..0d68f3040607 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -617,7 +617,8 @@ def target(Map args = [:]) { pushCIDockerImages(beatsFolder: "${directory}", arch: dockerArch) } if(isE2E) { - e2e(args) + log(level: 'WARN', text: "E2E Tests for Beats are disabled until latest breaking changes in Kibana affecting Package Registry are resolved.") + //e2e(args) } } }