-
Notifications
You must be signed in to change notification settings - Fork 4
feat: add remote_repo_build_mode envbuilder option #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
verbose = true | ||
workspace_folder = {{ quote .Repo.Dir }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
review: this isn't necessary any longer as far as I can tell
_ = cli.ContainerRemove(ctx, ctr.ID, container.RemoveOptions{ | ||
if err := cli.ContainerRemove(context.Background(), ctr.ID, container.RemoveOptions{ | ||
RemoveVolumes: true, | ||
Force: true, | ||
}) | ||
}); err != nil { | ||
t.Errorf("removing container: %s", err.Error()) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
drive-by: this wasn't cleaning up properly due to context.Canceled
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unblocking stamp
I don't have much context so best to wait for @mafredri as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good except for a few small things, pre-approved.
dd173ee
to
8351aac
Compare
Adds support for setting the --remote-repo-build-mode Envbuilder option. Defaults to true if not set.
Adds support for setting the
--remote-repo-build-mode
Envbuilder option.