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
We have a class that uses checkoutDep: True. When our project is build bob downloads this dependency from archive:
PACKAGE skipped (already downloaded in work/ext/autoconf-archive/aarch64-linux-gnu/dist/2/workspace)
When the recipe that uses this class is checked out we get an error that bob can't mount the workspace. But bob wants to mount its build directory and not the dist:
src/namespace-sandbox/namespace-sandbox.c:547: cannot mount '/path/to/recipes/work/ext/autoconf-archive/aarch64-linux-gnu/build/2/workspace' on '/tmp/tmp0r3btqqp/bob/4d28a660b06a15c4db54ad27bcd838cbee9ace6f/workspace': No such file or directory
The text was updated successfully, but these errors were encountered:
If a package is built in the sandbox it is defined that all previous
steps of the package are available in the sandbox. The code that added
these extra dependencies for the sandbox relied on the fact that
checkout steps have no dependencies. With the introduction of the
checkoutDep flag this is no longer the case. It is thus required to stop
iterating steps once we reached the checkout step.
FixesBobBuildTool#479.
If a package is built in the sandbox it is defined that all previous
steps of the package are available in the sandbox. The code that added
these extra dependencies for the sandbox relied on the fact that
checkout steps have no dependencies. With the introduction of the
checkoutDep flag this is no longer the case. It is thus required to stop
iterating steps once we reached the checkout step.
Fixes#479.
We have a class that uses
checkoutDep: True
. When our project is build bob downloads this dependency from archive:When the recipe that uses this class is checked out we get an error that bob can't mount the workspace. But bob wants to mount its
build
directory and not thedist
:The text was updated successfully, but these errors were encountered: