-
Notifications
You must be signed in to change notification settings - Fork 490
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
Build: Disable goexperiments in our builds due to issue present in Go 1.20.5 #5484
Conversation
# Disable go experiments during build as of go 1.20.5 due to | ||
# https://github.com/golang/go/issues/60825 | ||
# Likely fix: https://go-review.googlesource.com/c/go/+/503937/6/src/runtime/race_arm64.s | ||
export GOEXPERIMENT=none |
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.
GOEXPERIMENT=
I guess?
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.
I went off: https://pkg.go.dev/internal/goexperiment
Codecov Report
@@ Coverage Diff @@
## master #5484 +/- ##
==========================================
+ Coverage 55.64% 55.66% +0.02%
==========================================
Files 448 448
Lines 63493 63493
==========================================
+ Hits 35328 35345 +17
+ Misses 25772 25752 -20
- Partials 2393 2396 +3 see 15 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
…nt in Go 1.20.5 (algorand#5484)" This reverts commit 0824e4a.
Summary
Disable goexperiments in our builds due to issue present in Go 1.20.5 to address test issues on ARM64 builds.
Test Plan
Run full build successfully.