-
Notifications
You must be signed in to change notification settings - Fork 0
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
Bump go version #10
base: master
Are you sure you want to change the base?
Bump go version #10
Conversation
unable to import bind/java: [-: # golang.org/x/mobile/bind/java cgo: C compiler "gcc" not found: exec: "gcc": executable file not found in $PATH]
…3400-ce6a79cf6a13
As per https://stackoverflow.com/a/77686965/901465. Using api 19, our min sdk version.
@@ -1,6 +1,7 @@ | |||
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= | |||
cloud.google.com/go v0.33.1 h1:fmJQWZ1w9PGkHR1YL/P7HloDvqlmKQ4Vpb7PC2e+aCk= | |||
cloud.google.com/go v0.33.1/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= | |||
dmitri.shuralyov.com/gpu/mtl v0.0.0-20221208032759-85de2813cf6b/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= |
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.
🫨
android/Dockerfile
Outdated
@@ -13,6 +13,7 @@ RUN apt-get update \ | |||
curl \ | |||
git \ | |||
zip \ | |||
build-essential\ |
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.
we probably need to find a way to fix the gcc version. this will download "latest" which can differ between runs of the dockerfile and cause non-reproducible builds.
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.
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.
We believe this is no longer needed, we introduced this to fix a compiling error before trying out the "full"/rebased changes from upstream. Those include a commit where they no longer try to compile certain files before hand. Will try removing this
This reverts commit 725a91e.
Specifically: go get golang.org/x/mobile/cmd/gomobile@v0.0.0-20220414153400-ce6a79cf6a13
Simplifies env setup in other cases (e.g ci toolkit)
No description provided.