From 561794073a0c88026494f0297efe27668869bf63 Mon Sep 17 00:00:00 2001 From: Yun Peng Date: Mon, 11 Dec 2023 10:15:37 +0100 Subject: [PATCH] Skip config validation job in downstream pipeline --- buildkite/bazelci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildkite/bazelci.py b/buildkite/bazelci.py index 9bfcef308b..c5d5c8344e 100755 --- a/buildkite/bazelci.py +++ b/buildkite/bazelci.py @@ -2925,7 +2925,7 @@ def print_project_pipeline( ) ) - if "validate_config" in configs: + if "validate_config" in configs and not is_downstream_pipeline(): pipeline_steps += create_config_validation_steps( git_commit or os.getenv("BUILDKITE_COMMIT") )