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
In #13093install/preview:docker was turned into a dynamic package to make it optional to build. However, it appears that dynamic packages currently break leeway exec (see gitpod-io/leeway#100) and due to a misunderstanding install/preview:docker was removed from the "all" package dependency tree in #13240. That means that currently, you can't build install/preview:docker in CI.
The easiest fix is that doesn't break leeway exec is the
Convert it back to a "normal" package
But keep it out of the ":all" package dependency tree
Instead use leeway build install/preview:docker in Werft when the --with-local-preview is enabled.
⬆ This also means that it's easier to build the package in Gitpod as you don't have to pass in the build argument that the dynamic package relied on.
The text was updated successfully, but these errors were encountered:
In #13093
install/preview:docker
was turned into a dynamic package to make it optional to build. However, it appears that dynamic packages currently breakleeway exec
(see gitpod-io/leeway#100) and due to a misunderstanding install/preview:docker was removed from the "all" package dependency tree in #13240. That means that currently, you can't buildinstall/preview:docker
in CI.The easiest fix is that doesn't break
leeway exec
is theleeway build install/preview:docker
in Werft when the--with-local-preview
is enabled.⬆ This also means that it's easier to build the package in Gitpod as you don't have to pass in the build argument that the dynamic package relied on.
The text was updated successfully, but these errors were encountered: