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

Adding expansion.bzl for Fully Expanding Environment Variables #486

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
d6ce59b
Adding `expansion.bzl` for Fully Expanding Environment Variables
CauhxMilloy Jan 23, 2024
d724543
* Adding `bzl_library` target for `expansion.bzl` in `lib/BUILD`.
CauhxMilloy Jan 23, 2024
587f254
* Replacing platform dependent strings (from `$(location ...)` and si…
CauhxMilloy Jan 23, 2024
416305e
* Making `buildifier` happy again (removing extra empty line).
CauhxMilloy Jan 23, 2024
789a32f
* Prefixing fix method in test with `_`.
CauhxMilloy Jan 23, 2024
c38d3e8
* Reducing some duplication (merging `_expand_tc_all_keys_in_str()` a…
CauhxMilloy Jan 24, 2024
a823ff7
* Adding validation logic.
CauhxMilloy Jan 28, 2024
2ad568f
* Fixing doc comment for default value.
CauhxMilloy Jan 28, 2024
9e4779a
* Adding doc comments and other updates from PR review for bazel-bats…
CauhxMilloy Feb 18, 2024
a23dbc4
Merge remote-tracking branch 'remotes/original_origin/main' into addi…
CauhxMilloy May 11, 2024
f0cbec4
* Updating expected rlocation path for changes from merged-in master.
CauhxMilloy May 11, 2024
4fd0388
* Updating expected rlocation value to work with different versions o…
CauhxMilloy May 11, 2024
7e24e95
* Applying update to all impl functions.
CauhxMilloy May 11, 2024
a2ff961
* Downgrading usage of `dict | dict` in `tests/expansion_tests.bzl` t…
CauhxMilloy May 11, 2024
aa133b9
* Revering previous commit.
CauhxMilloy May 12, 2024
826b30c
* Fixing formatting.
CauhxMilloy May 12, 2024
e5d9112
* Downgrading usage of `dict | dict` to use `dict(dict, **dict)` to b…
CauhxMilloy May 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions lib/BUILD
Expand Up @@ -23,6 +23,11 @@ bzl_library(
srcs = ["dicts.bzl"],
)

bzl_library(
name = "expansion",
srcs = ["expansion.bzl"],
)

bzl_library(
name = "modules",
srcs = ["modules.bzl"],
Expand Down