Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
5e06f39
Add `env` and `env_inherit` to `native_binary` and `native_test`
redsun82 Dec 20, 2023
f59ff4a
Add test for `env` and `env_inherit`
redsun82 Dec 21, 2023
4dc1f9a
Make env and env_inherit parameters of native_binary depend on bazel …
redsun82 Dec 21, 2023
10ea0af
Update docs
redsun82 Dec 21, 2023
70e6b77
Update patch indexes
redsun82 Dec 21, 2023
6e83bfe
Fix windows compilation of `assertenv.cc`
redsun82 Dec 21, 2023
d53f286
Autoformat
redsun82 Dec 21, 2023
336176f
Autoformat correctly
redsun82 Dec 21, 2023
b2b6677
Tweak `env_test` for Windows
redsun82 Dec 21, 2023
df44fa9
Lint
redsun82 Dec 21, 2023
5a73fbe
Mention bazel version in native_binary docs
redsun82 Dec 21, 2023
2453f16
Fix formatting
redsun82 Dec 21, 2023
20acd19
Generalize again test to windows
redsun82 Dec 21, 2023
9ce0e55
Use `bazel_features`
redsun82 Jan 11, 2024
f1bd4e0
Add missing directory and fix docs
redsun82 Jan 11, 2024
165e7ef
Fix formatting
redsun82 Jan 11, 2024
c23d409
Merge branch 'main' into env-native-binary-using-features
redsun82 Jun 13, 2024
f05da82
Update `bazel_features`
redsun82 Jun 13, 2024
02c2708
Update `MODULE.bazle-remove-override.patch`
redsun82 Jun 13, 2024
f86cde0
Add location expansion to `env`
redsun82 Jun 13, 2024
798c1a7
Update docs
redsun82 Jun 13, 2024
a7c1415
Fix `--noenable_bzlmod` checks
redsun82 Jun 13, 2024
b9cc025
Remove unneeded backward compatibility code
redsun82 Jun 26, 2024
b8adf7f
Fix formatting
redsun82 Jun 26, 2024
1ca13a4
Remove unneeded code
redsun82 Jun 26, 2024
bcbc4fd
Merge branch 'main' into env-native-binary-using-features
Aug 26, 2024
8f76bb6
Clean up test code
Aug 26, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix formatting
  • Loading branch information
redsun82 committed Jan 11, 2024
commit 165e7ef96799ed0b920c151d27c5353f8a31216a
1 change: 1 addition & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ local_path_override(
module_name = "bazel_skylib_gazelle_plugin",
path = "gazelle",
)

local_path_override(
module_name = "bazel_features",
path = "bazel_features_stub",
Expand Down
2 changes: 0 additions & 2 deletions bazel_features_stub/README.md

This file was deleted.

5 changes: 5 additions & 0 deletions bazel_features_stub/features.bzl
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""
This is a stub for [bazel_features](https://github.com/bazel-contrib/bazel_features) used for
testing and updating docs.
"""

bazel_features = struct(
globals = struct(
RunEnvironmentInfo = RunEnvironmentInfo,
Expand Down