Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Evaluate build tags as both true and false #1938

Merged
merged 2 commits into from
Feb 4, 2025

Conversation

patrickmscott
Copy link
Contributor

Gazelle already iterates over all supported os/arch combos to include go files. This is similar but expanded to custom tags. When adding a new build tag, we create a copy with the tag set to true and append to the original. This means that build tag evaluation will grow exponentially.

Fixes #1262

What type of PR is this?

Feature

What package or component does this PR mostly affect?

language/go

What does this PR do? Why is it needed?

It changes the behavior of build_tags to defer evaluation to build time. Instead of assuming the tag is always true, it treats the tag as both true and false when evaluating tags for a file.

Which issues(s) does this PR fix?

Fixes #1262

Other notes for review

Copy link

google-cla bot commented Sep 27, 2024

Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).

View this failed invocation of the CLA check for more information.

For the most up to date status, view the checks section at the bottom of the pull request.

@patrickmscott patrickmscott force-pushed the patrick/conditional-tags branch from 8162813 to 1b7c214 Compare September 27, 2024 17:11
language/go/config.go Outdated Show resolved Hide resolved
language/go/config.go Outdated Show resolved Hide resolved
Copy link
Member

@fmeum fmeum left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tyler-french Could you test this at Uber? I would like to make sure that we don't see any accidental exponential blowup.

@patrickmscott
Copy link
Contributor Author

@tyler-french or @fmeum any update? I'm still running on a patched version of gazelle.

Gazelle already iterates over all supported os/arch combos to include go
files. This is similar but expanded to custom tags. When adding a new
build tag, we create a copy with the tag set to true and append to the
original. This means that build tag evaluation will grow exponentially.
Specify the map size hint. Refactor the map to use struct instead of
bool.
@fmeum fmeum force-pushed the patrick/conditional-tags branch from b2abf0d to 5f30a38 Compare February 4, 2025 14:40
@fmeum fmeum enabled auto-merge (squash) February 4, 2025 14:40
@fmeum fmeum merged commit e57b424 into bazel-contrib:master Feb 4, 2025
14 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

build_tags does not generate conditional build files
3 participants