Commit 9afa42ca authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #53209 from ixdy/bazel-depset-fix

Automatic merge from submit-queue (batch tested with PRs 49249, 53203, 53209, 53208, 53177). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. bazel: set --incompatible_disallow_set_constructor=false to fix breakage **What this PR does / why we need it**: The build is broken with bazel 0.6.0. I have a proper fix ready, but it'll lock us to bazel 0.6.0+, which I don't want to do quite yet, hence this workaround. x-ref #52677 **Release note**: ```release-note NONE ``` /assign @mikedanese @spxtr @BenTheElder cc @apelisse
parents 89123504 0dbff10f
...@@ -17,6 +17,8 @@ build --sandbox_fake_username ...@@ -17,6 +17,8 @@ build --sandbox_fake_username
# TODO(ixdy): Remove this default once rules_go is bumped. # TODO(ixdy): Remove this default once rules_go is bumped.
# Ref kubernetes/kubernetes#52677 # Ref kubernetes/kubernetes#52677
build --incompatible_comprehension_variables_do_not_leak=false build --incompatible_comprehension_variables_do_not_leak=false
# TODO(ixdy): remove the following once repo-infra is bumped.
build --incompatible_disallow_set_constructor=false
# Enable go race detection. # Enable go race detection.
test --features=race test --features=race
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment