-
Notifications
You must be signed in to change notification settings - Fork 255
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
Update go version in Dockerfile #280
Conversation
Welcome @ArangoGutierrez! |
Thank you for the patch. I think we should keep travis.yml in sync with the Dockerfile so that would need to be updated, too. |
sure, will patch the |
@marquiz you think we should do language: go
go:
- "1.13"
- "1.13.x" or just 1.13? |
I think one version should be enough. We could stay in full sync with the dockerfile and use |
done |
Hmm, end-to-end tests fail with go 1.13 🤔 Looks like the kubernetes version we're using as a dep (the e2e test framework from it) is incompatible with go 1.13. We should update the dep(s) to k8s v1.17 and try with that. |
35d0c59
to
c0ff162
Compare
Updating the deps wasn't quite that simple. I just submitted #282 to do that. We should merge that first and then try your PR on top of it. |
c0ff162
to
6828778
Compare
thanks for #282 , rebased and updated |
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.
You prolly should re-do the last patch (i.e. update go.mod). go mod tidy
hasn't worked as expected as it hasn't removed anything, just added quite a bit of stuff to go.sum. Also the commit message should be corrected accordingly
Signed-off-by: Carlos Eduardo Arango Gutierrez <carangog@redhat.com>
6828778
to
3e1e1a9
Compare
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.
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ArangoGutierrez, marquiz The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/lgtm |
Update go version in Docker build image to v1.13.5
Signed-off-by: Carlos Eduardo Arango Gutierrez carangog@redhat.com