Skip to content

Commit

Permalink
chore(ci): disable E2E tests in Beats (#28715)
Browse files Browse the repository at this point in the history
* 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)
  • Loading branch information
mdelapenya authored and mergify-bot committed Nov 2, 2021
1 parent c340dd3 commit 7f047d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .ci/packaging.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
}
}
Expand Down
3 changes: 2 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,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)
}
}
}
Expand Down

0 comments on commit 7f047d1

Please sign in to comment.