We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ea3bed commit 2ef8be7Copy full SHA for 2ef8be7
util/py/scripts/build_sw_collateral_for_sim.py
@@ -280,10 +280,12 @@ def _deploy_software_collateral(args) -> None:
280
bazel_runner = BazelRunner()
281
282
bazel_runner.cmd = "./bazelisk.sh"
283
- bazel_runner.build_opts = args.sw_build_opts + [
+ external_opts = list(set(args.sw_build_opts))
284
+ bazel_runner.build_opts = external_opts + [
285
"--define",
286
"DISABLE_VERILATOR_BUILD=true",
287
]
288
+ bazel_runner.cquery_opts_common += external_opts
289
290
# In the air-gapped environment, the following environment variable will exist.
291
if ENV.get("BAZEL_PYTHON_WHEELS_REPO"):
0 commit comments