-
Notifications
You must be signed in to change notification settings - Fork 79
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
fulltest failed #196
Comments
Asked upstream for help on what the current best practice is for handling tools dependencies: golang/go#25922 (comment) |
Upstream answer from @jayconrod.
@dannypsnl, we should update our CI test scripts to not include the Cheers, |
But we didn't run |
@dannypsnl, can you re-produce this issue locally? When i run $ go install -v ./... ; echo $?
0 Edit: It seems from https://github.com/llir/llvm/actions/runs/1045240441 that Since Go version 1.10,
|
Ahh, I think I know what the issue is. We updated the Go build tags to the format supported by Go 1.17 (i.e. using So for the time being, we should use both it seems. Then when Go version 1.18 (or 1.19) is released, we can remove the use of From df0eb03#diff-22d8b7bad6c36a7bfe9e86a29b00c1b5006662b532a29a1f99de16b4eef9473a -//+build tools
+//go:build tools
|
Note, the build passes (on rev 11e88e3) using Go version 1.17.
|
Fixed in ee6f05b. |
@mewmew could you take a look? Changes destroyed test
The text was updated successfully, but these errors were encountered: