Skip to content

Commit 3790de3

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 ea77d2c commit 3790de3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.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
@@ -614,7 +614,8 @@ def target(Map args = [:]) {
614614
pushCIDockerImages(beatsFolder: "${directory}", arch: dockerArch)
615615
}
616616
if(isE2E) {
617-
e2e(args)
617+
log(level: 'WARN', text: "E2E Tests for Beats are disabled until latest breaking changes in Kibana affecting Package Registry are resolved.")
618+
//e2e(args)
618619
}
619620
}
620621
}

0 commit comments

Comments
 (0)