From bffc7ec395e4d827ee974edac76708a2d1ec4d90 Mon Sep 17 00:00:00 2001 From: Yun Peng Date: Mon, 6 Dec 2021 17:45:41 +0100 Subject: [PATCH] Disable and remove projects in downstream Those projects are broken due to incompatible changes in Bazel and didn't get fixed for a long time. * Android Testing: https://github.com/android/testing-samples/issues/417 * Tulsi: https://github.com/bazelbuild/tulsi/issues/286 * rules_dotnet: https://github.com/bazelbuild/rules_dotnet/issues/268 * rules_haskell: https://github.com/tweag/rules_haskell/issues/1650 * rules_k8s: https://github.com/bazelbuild/rules_k8s/issues/668 * rules_d: removed because the project isn't maintained. --- buildkite/bazelci.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/buildkite/bazelci.py b/buildkite/bazelci.py index beefa93ce2..7dc6342e68 100755 --- a/buildkite/bazelci.py +++ b/buildkite/bazelci.py @@ -93,6 +93,7 @@ "git_repository": "https://github.com/googlesamples/android-testing.git", "http_config": "https://raw.githubusercontent.com/googlesamples/android-testing/master/bazelci/buildkite-pipeline.yml", "pipeline_slug": "android-testing", + "disabled_reason": "https://github.com/android/testing-samples/issues/417", }, "Bazel": { "git_repository": "https://github.com/bazelbuild/bazel.git", @@ -253,6 +254,7 @@ "git_repository": "https://github.com/bazelbuild/tulsi.git", "http_config": "https://raw.githubusercontent.com/bazelbuild/tulsi/master/.bazelci/presubmit.yml", "pipeline_slug": "tulsi-bazel-darwin", + "disabled_reason": "https://github.com/bazelbuild/tulsi/issues/286", }, "re2": { "git_repository": "https://github.com/google/re2.git", @@ -287,11 +289,6 @@ "pipeline_slug": "rules-closure-closure-compiler", "owned_by_bazel": True, }, - "rules_d": { - "git_repository": "https://github.com/bazelbuild/rules_d.git", - "http_config": "https://raw.githubusercontent.com/bazelbuild/rules_d/master/.bazelci/presubmit.yml", - "pipeline_slug": "rules-d", - }, "rules_docker": { "git_repository": "https://github.com/bazelbuild/rules_docker.git", "http_config": "https://raw.githubusercontent.com/bazelbuild/rules_docker/master/.bazelci/presubmit.yml", @@ -301,6 +298,7 @@ "git_repository": "https://github.com/bazelbuild/rules_dotnet.git", "http_config": "https://raw.githubusercontent.com/bazelbuild/rules_dotnet/master/.bazelci/presubmit.yml", "pipeline_slug": "rules-dotnet-edge", + "disabled_reason": "https://github.com/bazelbuild/rules_dotnet/issues/268", }, "rules_foreign_cc": { "git_repository": "https://github.com/bazelbuild/rules_foreign_cc.git", @@ -328,6 +326,7 @@ "git_repository": "https://github.com/tweag/rules_haskell.git", "http_config": "https://raw.githubusercontent.com/tweag/rules_haskell/master/.bazelci/presubmit.yml", "pipeline_slug": "rules-haskell-haskell", + "disabled_reason": "https://github.com/tweag/rules_haskell/issues/1650", }, "rules_jsonnet": { "git_repository": "https://github.com/bazelbuild/rules_jsonnet.git", @@ -350,6 +349,7 @@ "git_repository": "https://github.com/bazelbuild/rules_k8s.git", "http_config": "https://raw.githubusercontent.com/bazelbuild/rules_k8s/master/.bazelci/presubmit.yml", "pipeline_slug": "rules-k8s-k8s", + "disabled_reason": "https://github.com/bazelbuild/rules_k8s/issues/668", }, "rules_kotlin": { "git_repository": "https://github.com/bazelbuild/rules_kotlin.git", @@ -969,7 +969,7 @@ def print_collapsed_group(name): def print_expanded_group(name): eprint("\n\n+++ {0}\n\n".format(name)) - + def is_trueish(s): return str(s).lower() in ["true", "1", "t", "y", "yes"]