-
Notifications
You must be signed in to change notification settings - Fork 247
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
migrate to go 1.12 and go modules #1485
Conversation
Pull Request Checklist
|
|
Jenkins BuildsClick to see older builds (48)
|
|
1 similar comment
|
iOS build fails with:
This suggests that |
|
|
|
1 similar comment
|
I confirmed that on macOS Jenkins executors we have Go in version 1.10 and that's why the iOS build does not pass. |
I've migrated the CI hosts to
|
Apparently it was supposed to be
|
|
Adjusted the |
|
2 similar comments
|
|
You can try cherry picking 04c4c84 for your branch. Also e0eaca2 would probably be a good idea to update the docker image we use for building |
e05cf82
to
e3f8daa
Compare
|
5 similar comments
|
|
|
|
|
Signed-off-by: Jakub Sokołowski <[email protected]>
Signed-off-by: Jakub Sokołowski <[email protected]>
bf20556
to
9cede64
Compare
|
This problem surfaced when we wanted to upgrade https://github.com/status-im/migrate to v4. Because dep does not work well with go modules and migrate v4 does support go modules syntax, it is currently not possible to have both work. Check out golang/dep#1963 and golang/dep#1962.
In this PR, Go is upgraded to 1.12 and dependencies are migrated from dep to go modules.