-
Notifications
You must be signed in to change notification settings - Fork 988
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
[BazelDeps] glob()
compatible with bazel 8.x
#17444
Conversation
BAZEL_6_5_0=6.5.0 \ | ||
BAZEL_7_4_1=7.4.1 \ | ||
BAZEL_8_0_0=8.0.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor suggestion, name this with the major so we just need to change this part for future updates:
BAZEL_6_5_0=6.5.0 \ | |
BAZEL_7_4_1=7.4.1 \ | |
BAZEL_8_0_0=8.0.0 | |
BAZEL_6=6.5.0 \ | |
BAZEL_7=7.4.1 \ | |
BAZEL_8=8.0.0 |
"default": "7", | ||
"6.5.0": {"path": {'Linux': '/usr/share/bazel-6.5.0/bin', | ||
'Windows': 'C:/tools/bazel/6.5.0', | ||
'Darwin': '/Users/runner/Applications/bazel/6.5.0'}}, | ||
"7.4.1": {"path": {'Linux': '/usr/share/bazel-7.4.1/bin', | ||
'Windows': 'C:/tools/bazel/7.4.1', | ||
'Darwin': '/Users/runner/Applications/bazel/7.4.1'}}, | ||
"8.0.0": {"path": {'Linux': '/usr/share/bazel-8.0.0/bin', | ||
'Windows': 'C:/tools/bazel/8.0.0', | ||
'Darwin': '/Users/runner/Applications/bazel/8.0.0'}}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we put just the major we don't have to update the tests marks in case we change versions
"default": "7", | |
"6.5.0": {"path": {'Linux': '/usr/share/bazel-6.5.0/bin', | |
'Windows': 'C:/tools/bazel/6.5.0', | |
'Darwin': '/Users/runner/Applications/bazel/6.5.0'}}, | |
"7.4.1": {"path": {'Linux': '/usr/share/bazel-7.4.1/bin', | |
'Windows': 'C:/tools/bazel/7.4.1', | |
'Darwin': '/Users/runner/Applications/bazel/7.4.1'}}, | |
"8.0.0": {"path": {'Linux': '/usr/share/bazel-8.0.0/bin', | |
'Windows': 'C:/tools/bazel/8.0.0', | |
'Darwin': '/Users/runner/Applications/bazel/8.0.0'}}, | |
"default": "7", | |
"6": {"path": {'Linux': '/usr/share/bazel-6.5.0/bin', | |
'Windows': 'C:/tools/bazel/6.5.0', | |
'Darwin': '/Users/runner/Applications/bazel/6.5.0'}}, | |
"7": {"path": {'Linux': '/usr/share/bazel-7.4.1/bin', | |
'Windows': 'C:/tools/bazel/7.4.1', | |
'Darwin': '/Users/runner/Applications/bazel/7.4.1'}}, | |
"8": {"path": {'Linux': '/usr/share/bazel-8.0.0/bin', | |
'Windows': 'C:/tools/bazel/8.0.0', | |
'Darwin': '/Users/runner/Applications/bazel/8.0.0'}}, |
Changelog: Fix: Added explicitly
allow_empty = True
toglob()
function in BazelDeps (bazel 8.x compatible).Docs: omit
Closes: #17438
Note: Updated the installed versions of Bazel to the latest ones too.