python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Bazel build fails with msg "env: python: No such file or directory" (macOS Monterey)
I am new to python world and I have followed a few articles to set python on my system. I need python to build my project through bazel.
When I build my project on local, I get the following error. Pl...
Abhishek Garg
Votes: 0
Answers: 3
How can I make the outputs of a genrule selectively visible?
Suppose I have a genrule that generates multiple outputs:
genrule(
name = "gen",
outs = ["a", "b"],
...,
)
How can I give a public visibility but not b?
Some...
John
Votes: 0
Answers: 1
BAZEL: How to exclude certain targets if a configuration setting is true
Let's say I have 3 libraries in different folders:
a_library(
name = "a",
)
b_library(
name = "b",
)
c_library(
name = "c",
)
I want to bazel build ... to build ...
checkmark1234321
Votes: 0
Answers: 1
Is it possible to run a command in a Docker image as a test in Bazel?
I would like to run a command inside a container to test that it works. It should be invoked by bazel test.
Something like this:
container_test(
image = "//:my_image"
test_command = &quo...
sdgfsdh
Votes: 0
Answers: 1