From dd5831a13ce4e79e17335e2621f75fb9c20e8c7f Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Mon, 14 Mar 2022 19:12:54 -0400 Subject: [PATCH] [bk/flaky] fix env var for reusing artifacts (#127503) (#127672) (cherry picked from commit 62f8e58f11941069ad4ed53219eb10a995c71c78) Co-authored-by: Spencer --- .buildkite/pipelines/flaky_tests/runner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/pipelines/flaky_tests/runner.js b/.buildkite/pipelines/flaky_tests/runner.js index cff4f9c0f29e7..35872fcbf2c02 100644 --- a/.buildkite/pipelines/flaky_tests/runner.js +++ b/.buildkite/pipelines/flaky_tests/runner.js @@ -113,7 +113,7 @@ steps.push({ label: 'Build Kibana Distribution and Plugins', agents: { queue: 'c2-8' }, key: 'build', - if: "build.env('BUILD_ID_FOR_ARTIFACTS') == null || build.env('BUILD_ID_FOR_ARTIFACTS') == ''", + if: "build.env('KIBANA_BUILD_ID') == null || build.env('KIBANA_BUILD_ID') == ''", }); for (const testSuite of testSuites) {