You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My current project is looking to use bazel-distribution to publish pip packages with bazel. We have several projects, which live as local workspaces in our git monorepo. However if I attempt to build the assemple_pip rule, invoked for example as bazel build @subproject1//my/package:assemble, this fails saying that args.files is None and therefore not iterable. However, if I cd into the folder containing the local workspace, and build as bazel build //my/package:assemble, things work as expected.
Presumably this is because of this part of the code:
I think the fact that the source files are being stripped out when external is part of the path may be the issue. Does anyone have ideas on how to solve this?
The text was updated successfully, but these errors were encountered:
My current project is looking to use
bazel-distribution
to publish pip packages with bazel. We have several projects, which live as local workspaces in our git monorepo. However if I attempt to build theassemple_pip
rule, invoked for example asbazel build @subproject1//my/package:assemble
, this fails saying thatargs.files
isNone
and therefore not iterable. However, if Icd
into the folder containing the local workspace, and build asbazel build //my/package:assemble
, things work as expected.Presumably this is because of this part of the code:
I think the fact that the source files are being stripped out when
external
is part of the path may be the issue. Does anyone have ideas on how to solve this?The text was updated successfully, but these errors were encountered: