-
Notifications
You must be signed in to change notification settings - Fork 74
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
Building firectl requires at least Go 1.14 #61
Conversation
Thanks! That is surprising since we haven't upgraded multierror on Firecracker Go SDK because of that (firecracker-microvm/firecracker-go-sdk#223). Do you know who is using multierror v1.1? I'm slightly inclined to downgrade multierror instead. |
Not sure. I'm not a Go expert at all. I just realized the build error and found that building with 1.14 fixes it. I tried to remove the dependencies on multierror v1.1 from The only thing I found is that the dependency was introduced by #57 (Jailer support) |
We recently decided to take a dependency that requires Go 1.14 in firecracker-go-sdk, so I think this PR is OK to move forward (firecracker-microvm/firecracker-go-sdk#363). @simonis If you're still available to work on this PR can you please do the following?
|
Hi @Kern-- , yes, I'm still around, I just didn't saw your comment :) I've pulled and merged with upstream, changed the comment in Please let me know if there's anything else I can do? Best regards, |
@simonis, this looks good to me. To pass the DCO validation, you'll need to squash the commits locally and force push to your branch. |
Signed-off-by: Volker Simonis <[email protected]>
Hi @austinvazquez, |
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.
LGTM!
It looks like building
firectl
requiers at least Go 1.14. Othwise I get the following build error:The fix is trivial. I've updated the
Makefile
andReadme.md
to use the new version.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.