-
Notifications
You must be signed in to change notification settings - Fork 16
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
Updating go mod with new location #62
Conversation
WalkthroughThe changes primarily involve updating the TinyGo version in various Makefiles to use the latest Docker image, ensuring up-to-date builds. Additionally, there are several import statement modifications across multiple Go files, with no significant alterations to function signatures or global variables. Changes
TipsChat with CodeRabbit Bot (
|
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.
Review Status
Actionable comments generated: 0
Files ignored due to filter (16)
- example/echo/go/go.mod
- example/echo/go/go.sum
- example/tac/go/go.mod
- example/tac/go/go.sum
- example/toolkit/go.mod
- example/toolkit/go.sum
- testdata/default/go.mod
- testdata/default/go.sum
- testdata/function/go.mod
- testdata/function/go.sum
- testdata/kv/go.mod
- testdata/kv/go.sum
- testdata/logger/go.mod
- testdata/logger/go.sum
- testdata/sql/go.mod
- testdata/sql/go.sum
Files selected for processing (7)
- example/echo/go/Makefile (1 hunks)
- example/tac/go/Makefile (1 hunks)
- testdata/default/Makefile (1 hunks)
- testdata/function/Makefile (1 hunks)
- testdata/kv/Makefile (1 hunks)
- testdata/logger/Makefile (1 hunks)
- testdata/sql/Makefile (1 hunks)
Files skipped from review due to trivial changes (7)
- example/echo/go/Makefile
- example/tac/go/Makefile
- testdata/default/Makefile
- testdata/function/Makefile
- testdata/kv/Makefile
- testdata/logger/Makefile
- testdata/sql/Makefile
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.
Review Status
Actionable comments generated: 0
Files selected for processing (12)
- cmd/tarmac/main.go (1 hunks)
- example/toolkit/main.go (1 hunks)
- pkg/app/app.go (2 hunks)
- pkg/app/app_test.go (1 hunks)
- pkg/app/server.go (1 hunks)
- pkg/callbacks/httpclient/httpclient.go (1 hunks)
- pkg/callbacks/httpclient/httpclient_test.go (1 hunks)
- pkg/callbacks/kvstore/kvstore.go (1 hunks)
- pkg/callbacks/kvstore/kvstore_test.go (1 hunks)
- pkg/callbacks/metrics/metrics.go (1 hunks)
- pkg/callbacks/sql/sql.go (1 hunks)
- pkg/callbacks/sql/sql_test.go (1 hunks)
Files skipped from review due to trivial changes (12)
- cmd/tarmac/main.go
- example/toolkit/main.go
- pkg/app/app.go
- pkg/app/app_test.go
- pkg/app/server.go
- pkg/callbacks/httpclient/httpclient.go
- pkg/callbacks/httpclient/httpclient_test.go
- pkg/callbacks/kvstore/kvstore.go
- pkg/callbacks/kvstore/kvstore_test.go
- pkg/callbacks/metrics/metrics.go
- pkg/callbacks/sql/sql.go
- pkg/callbacks/sql/sql_test.go
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.
Rate Limit ExceededYou have exceeded the limit for the number of files or commits that can be reviewed per hour. Please wait 4 minutes and 19 seconds before requesting another review. To re-trigger a review, convert this PR to a draft and then mark it as ready for review again. Alternatively, you can push a new commit to this PR. |
Rate Limit ExceededYou have exceeded the limit for the number of files or commits that can be reviewed per hour. Please wait 2 minutes and 51 seconds before requesting another review. To re-trigger a review, convert this PR to a draft and then mark it as ready for review again. Alternatively, you can push a new commit to this PR. |
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.
Review Status
Actionable comments generated: 0
Files ignored due to filter (6)
- example/echo/go/go.mod
- example/tac/go/go.mod
- example/toolkit/go.mod
- testdata/default/go.mod
- testdata/function/go.mod
- testdata/kv/go.mod
Files selected for processing (1)
- testdata/default/Makefile (1 hunks)
Files skipped from review due to trivial changes (1)
- testdata/default/Makefile
Codecov ReportAll modified lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #62 /- ##
=======================================
Coverage 82.40% 82.40%
=======================================
Files 12 12
Lines 1125 1125
=======================================
Hits 927 927
Misses 152 152
Partials 46 46
☔ View full report in Codecov by Sentry. |
Summary by CodeRabbit
0.25.0
). This ensures that the most recent features and fixes from TinyGo are incorporated during the build process.--rm
flag, ensuring proper cleanup of containers after each build. This change enhances resource management during the build process.