An open API service indexing awesome lists of open source software.

https://github.com/aherrmann/demo-bazel-detect-bzlmod-config-setting


https://github.com/aherrmann/demo-bazel-detect-bzlmod-config-setting

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

A config setting to distinguish bzlmod and WORKSPACE mode.

```
$ bazel build demo && cat bazel-bin/demo.txt
...
workspace
```

```
$ bazel build demo --enable_bzlmod && cat bazel-bin/demo.txt
...
bzlmod
```

Where `demo` is defined as

```
write_file(
name = "demo",
out = "demo.txt",
content = select({
":bzlmod": ["bzlmod"],
":workspace": ["workspace"],
}),
)
```