From 532bc5a7703a1abb98154ed222b1bbc17f641d65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danny=20M=C3=B6sch?= Date: Mon, 23 Dec 2024 16:40:21 +0100 Subject: [PATCH] Remove option for strict concurrency checking (#5910) --- .buildkite/pipeline.yml | 6 ------ BUILD | 5 ----- 2 files changed, 11 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 22fb23aaf..e3c492c64 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -5,12 +5,6 @@ steps: - bazel build :swiftlint - echo "+++ Test" - bazel test --test_output=errors //Tests/... - - label: "Build With Strict Concurrency" - commands: - - echo "+++ Build" - - bazel build --define strict_concurrency_builtin_rules=true :swiftlint - - echo "--- Clean up" - - git reset --hard - label: "SwiftPM" commands: - echo "+++ Test" diff --git a/BUILD b/BUILD index 13b099db4..ef07adeba 100644 --- a/BUILD +++ b/BUILD @@ -8,11 +8,6 @@ load( "universal_swift_compiler_plugin", ) -config_setting( - name = "strict_concurrency_builtin_rules", - values = {"define": "strict_concurrency_builtin_rules=true"}, -) - bool_flag( name = "universal_tools", build_setting_default = False,