From 4470f96fd27a69ca95e529f913dd7dbe507a9706 Mon Sep 17 00:00:00 2001 From: Mike Place Date: Tue, 21 Jul 2020 09:24:43 +0200 Subject: [PATCH 1/3] Archive e2e test results in ES --- .ci/end2end.groovy | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ci/end2end.groovy b/.ci/end2end.groovy index 97099c6f87448c..e73648df0a7bf8 100644 --- a/.ci/end2end.groovy +++ b/.ci/end2end.groovy @@ -110,6 +110,9 @@ pipeline { archiveArtifacts(allowEmptyArchive: true, artifacts: "${E2E_DIR}/kibana.log") } } + cleanup { + notifyBuildResult() + } } } From d553a24fc6a21bfa56902cd086e98c945ce793fb Mon Sep 17 00:00:00 2001 From: Mike Place Date: Tue, 21 Jul 2020 10:18:22 +0200 Subject: [PATCH 2/3] Disable flaky comment feature and PR notifications --- .ci/end2end.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/end2end.groovy b/.ci/end2end.groovy index e73648df0a7bf8..9dc1f07dd4f4a7 100644 --- a/.ci/end2end.groovy +++ b/.ci/end2end.groovy @@ -111,7 +111,7 @@ pipeline { } } cleanup { - notifyBuildResult() + notifyBuildResult(notifyPRComment: false, analyzeFlakey: false) } } } From 7ab1a16d34cb831b5a33656bd040f2af7d6d3f68 Mon Sep 17 00:00:00 2001 From: cachedout Date: Tue, 21 Jul 2020 10:26:13 +0200 Subject: [PATCH 3/3] Update .ci/end2end.groovy Co-authored-by: Victor Martinez --- .ci/end2end.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/end2end.groovy b/.ci/end2end.groovy index 9dc1f07dd4f4a7..ee117d362d59b1 100644 --- a/.ci/end2end.groovy +++ b/.ci/end2end.groovy @@ -111,7 +111,7 @@ pipeline { } } cleanup { - notifyBuildResult(notifyPRComment: false, analyzeFlakey: false) + notifyBuildResult(notifyPRComment: false, analyzeFlakey: false, shouldNotify: false) } } }