Hi,
I am currently building a dagger pipeline to dockerize Nodejs app and on one of the app the last step which is a simple npm install is in a idle status.
I can run the pipeline on my laptop and no issues at all but on our github runner it just pause, without error or messages.
I am new to dagger and I feel like their is a simple issues that I don't see.
func (i *Image) Build(ctx context.Context, addresses []string) error {
for _, addr := range addresses {
_, err := i.Ctr.Publish(ctx, addr)
if err != nil {
return err
}
}
return nil
}
Thanks in advance π
... Maybe I'm misreading or there's an obscure possibility the stack trace is somehow inaccurate (highly unlikely, but who knows) but I currently have no explanation for how that could happen. If that is indeed somehow happening, there's a possibility it could lead to inconsistent graph state errors. Not sure if the deadlock is related to that or not.