From 51414d6b56f5a85d29c70c4009c9a834334cb129 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Fri, 5 Nov 2021 12:23:20 +0100 Subject: [PATCH] Revert "chore(ci): disable E2E tests in Beats (#28715)" (#28812) This reverts commit a83e883fbde46de14013b9fb7bbdedd53d1bbad3. --- .ci/packaging.groovy | 3 +-- Jenkinsfile | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.ci/packaging.groovy b/.ci/packaging.groovy index d8d9d2af80d..7c4ce7b5e8f 100644 --- a/.ci/packaging.groovy +++ b/.ci/packaging.groovy @@ -246,8 +246,7 @@ pipeline { agent { label 'ubuntu-18 && immutable' } options { skipDefaultCheckout() } steps { - log(level: 'WARN', text: "E2E Tests for Beats are disabled until latest breaking changes in Kibana affecting Package Registry are resolved.") - //runE2ETests() + runE2ETests() } } } diff --git a/Jenkinsfile b/Jenkinsfile index 0d68f304060..6c1fb0dbcb3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -617,8 +617,7 @@ def target(Map args = [:]) { pushCIDockerImages(beatsFolder: "${directory}", arch: dockerArch) } if(isE2E) { - log(level: 'WARN', text: "E2E Tests for Beats are disabled until latest breaking changes in Kibana affecting Package Registry are resolved.") - //e2e(args) + e2e(args) } } }