-
Notifications
You must be signed in to change notification settings - Fork 411
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
tinygo: enable cmd/core/init #3062
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3062 +/- ##
==========================================
- Coverage 59.88% 59.88% -0.01%
==========================================
Files 580 580
Lines 38186 38186
==========================================
- Hits 22867 22866 -1
- Misses 15319 15320 +1
Flags with carried forward coverage won't be shown. Click here to find out 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.
Nice.
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.
if you can get this to build, it's a big step forward.
@rminnich re-running the ci seems to have fixed that. |
Add conditional compilation to exclude any use of network packages for now. Further, `klauspost/zstd` is used, so to build this cmdlet with tinygo requires to set the build tag `noasm` as well: ``` tinygo build -tags noasm . ``` Signed-off-by: leongross <[email protected]>
Add conditional compilation to exclude any use of network packages for now. Further,
klauspost/zstd
is used, so to build this cmdlet with tinygo requires to set the build tagnoasm
as well. Since this package usesunix.Sync
the latesttinygo
release cannot yet be used but instead, a dev build is required.@rminnich