skip failing suites (#177084)

This commit is contained in:
Jonathan Budzenski 2024-02-15 15:14:49 -06:00
parent cec949ed0a
commit f8c49fe038

View file

@ -81,7 +81,8 @@ const uploadPipeline = (pipelineContent: string | object) => {
} }
if ( if (
(await doAnyChangesMatch([/^x-pack\/plugins\/apm/, /^packages\/kbn-apm-synthtrace/])) || // Failing: See https://github.com/elastic/kibana/issues/177084
// (await doAnyChangesMatch([/^x-pack\/plugins\/apm/, /^packages\/kbn-apm-synthtrace/])) ||
GITHUB_PR_LABELS.includes('ci:all-cypress-suites') GITHUB_PR_LABELS.includes('ci:all-cypress-suites')
) { ) {
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/apm_cypress.yml')); pipeline.push(getPipeline('.buildkite/pipelines/pull_request/apm_cypress.yml'));