From 87401c8b3751c0c3c13881027f1b02d4e9f0eb3f Mon Sep 17 00:00:00 2001 From: Dzmitry Lemechko Date: Tue, 11 Feb 2025 15:21:20 +0100 Subject: [PATCH] [ci] run scout tests as on merge non-blocking pipeline (#210425) ## Summary To collect more stats (run time & flakiness) we would like to run Scout tests in "non-blocking" way for on-merge pipeline. I basically copied script and configuration from https://github.com/elastic/kibana/blob/9dc67bfd8836e8d3a2f0480d997b11d9e7e9106f/.buildkite/pipelines/pull_request/scout_ui_tests.yml (cherry picked from commit 745cbb7d8db5cb1f8e7810d018f01c032ece072c) --- .../pipelines/on_merge_unsupported_ftrs.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.buildkite/pipelines/on_merge_unsupported_ftrs.yml b/.buildkite/pipelines/on_merge_unsupported_ftrs.yml index 42ab2e9271e19..32ea1f4768250 100644 --- a/.buildkite/pipelines/on_merge_unsupported_ftrs.yml +++ b/.buildkite/pipelines/on_merge_unsupported_ftrs.yml @@ -67,3 +67,22 @@ steps: limit: 3 - exit_status: '*' limit: 1 + + - command: .buildkite/scripts/steps/functional/scout_ui_tests.sh + label: 'Scout UI Tests' + agents: + image: family/kibana-ubuntu-2004 + imageProject: elastic-images-prod + provider: gcp + machineType: n2-standard-8 + preemptible: true + depends_on: build + env: + PING_SLACK_TEAM: "@appex-qa-team" + timeout_in_minutes: 60 + retry: + automatic: + - exit_status: '-1' + limit: 2 + - exit_status: '*' + limit: 1