Skip to content

Commit 7f047d1

Browse files
mdelapenyamergify-bot
authored andcommitted
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 (cherry picked from commit a83e883)
1 parent c340dd3 commit 7f047d1

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.ci/packaging.groovy

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,8 @@ pipeline {
246246
agent { label 'ubuntu-18 && immutable' }
247247
options { skipDefaultCheckout() }
248248
steps {
249-
runE2ETests()
249+
log(level: 'WARN', text: "E2E Tests for Beats are disabled until latest breaking changes in Kibana affecting Package Registry are resolved.")
250+
//runE2ETests()
250251
}
251252
}
252253
}

Jenkinsfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,8 @@ def target(Map args = [:]) {
619619
pushCIDockerImages(beatsFolder: "${directory}", arch: dockerArch)
620620
}
621621
if(isE2E) {
622-
e2e(args)
622+
log(level: 'WARN', text: "E2E Tests for Beats are disabled until latest breaking changes in Kibana affecting Package Registry are resolved.")
623+
//e2e(args)
623624
}
624625
}
625626
}

0 commit comments

Comments
 (0)