-
Notifications
You must be signed in to change notification settings - Fork 478
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
ci(bindings/go): always test against the latest core #4913
ci(bindings/go): always test against the latest core #4913
Conversation
bc2ae9f
to
a8faccd
Compare
818cfe9
to
732d3c7
Compare
@Xuanwo Hi I have noticed that if people use GOPROXY=https://proxy.golang.org go get github.com/apache/opendal-go-services/aliyun_drive
go: module github.com/apache/opendal-go-services@upgrade found (v0.0.0-20240719030108-74ff217cfef9), but does not contain package github.com/apache/opendal-go-services/aliyun_drive But they can succeed with: unset GOPROXY
go get github.com/apache/opendal-go-services/aliyun_drive
go: downloading github.com/apache/opendal-go-services/aliyun_drive v0.0.0-20240719030108-74ff217cfef9
go: added github.com/apache/opendal-go-services/aliyun_drive v0.0.0-20240719030108-74ff217cfef9 I don't know why. But it can cause trouble for users. |
732d3c7
to
a77af99
Compare
Hi @yuchanns, I suspect that GOPROXY's cache doesn't always refresh after new commits are pushed. Please try using |
a77af99
to
1103732
Compare
Fine. This works. |
b3988fd
to
85aabae
Compare
Signed-off-by: Hanchin Hsieh <me@yuchanns.xyz>
85aabae
to
0e78893
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.
Thanks a lot!
The go-binding currently uses a service based on v0.47.3 for testing and does not integrate the latest core.
With apache/opendal-go-services#2 now merged, we can use the script to generate the latest core and service, then test it using Go Workspace.