-
Notifications
You must be signed in to change notification settings - Fork 49
chore: change build producer in build + fix lint #328
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
Changes from all commits
4ae060a
883810a
f38da95
c347f75
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,23 +2,14 @@ module github.com/llm-d/llm-d-async | |
|
|
||
| go 1.25.8 | ||
|
|
||
| require github.com/llm-d/llm-d-async/api v0.7.4 | ||
|
|
||
| require github.com/llm-d/llm-d-async/producer v0.7.4 | ||
|
|
||
| require github.com/llm-d/llm-d-async/pipeline v0.7.4 | ||
|
|
||
| replace github.com/llm-d/llm-d-async/api => ./api | ||
|
|
||
| replace github.com/llm-d/llm-d-async/producer => ./producer | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @vishbhat
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. One item which we might need to handle:
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you should remove
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. go.work will like this, then you don't need hacking go.mod with
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. correct, but i think this is how was designed at the beginning to make these modulization.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. a different topic, we should bump go to 1.26 sooner than later
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. changes bit for api and pipeline to use go.work now |
||
|
|
||
| replace github.com/llm-d/llm-d-async/pipeline => ./pipeline | ||
|
|
||
| require ( | ||
| cloud.google.com/go/monitoring v1.30.0 | ||
| cloud.google.com/go/pubsub/v2 v2.6.1 | ||
| github.com/alicebob/miniredis/v2 v2.38.0 | ||
| github.com/go-logr/logr v1.4.4 | ||
| github.com/llm-d/llm-d-async/api v0.7.4 | ||
| github.com/llm-d/llm-d-async/pipeline v0.7.4 | ||
| github.com/llm-d/llm-d-async/producer v0.7.4 | ||
| github.com/onsi/ginkgo/v2 v2.32.0 | ||
| github.com/onsi/gomega v1.42.1 | ||
| github.com/prometheus/client_golang v1.24.0 | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| go 1.25.8 | ||
|
|
||
| use ( | ||
| . | ||
| ./api | ||
| ./pipeline | ||
| ./producer | ||
| ) |
Uh oh!
There was an error while loading. Please reload this page.