From cf434bde3957a78fc3dcff9b3f64d062b11e452c Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Fri, 11 Mar 2022 12:58:45 -0500 Subject: [PATCH] [bk/flaky] fix env var for reusing artifacts (#127503) (#127512) (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) {