-
Notifications
You must be signed in to change notification settings - Fork 164
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
Update eve api usb+can #3786
Update eve api usb+can #3786
Conversation
It seems that you forgot to update the vendor folders with these changes. |
e340dca
to
558db2e
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #3786 +/- ##
==========================================
- Coverage 19.71% 19.69% -0.02%
==========================================
Files 235 235
Lines 51757 51757
==========================================
- Hits 10204 10196 -8
- Misses 40815 40821 +6
- Partials 738 740 +2 ☔ View full report in Codecov by Sentry. |
ef7cf85
to
063dbb1
Compare
Makefile
Outdated
@@ -834,6 +834,11 @@ cache-export-docker-load-all: $(LINUXKIT) $(addsuffix -cache-export-docker-load, | |||
proto-vendor: | |||
@$(DOCKER_GO) "cd pkg/pillar ; go mod vendor" $(CURDIR) proto | |||
|
|||
bump-eve-api: | |||
find . -type f -name "go.mod" -exec grep -q 'github.com/lf-edge/eve-api/go' {} \; -execdir go get -u github.com/lf-edge/eve-api/go \; | |||
find . -type f -name "go.mod" -exec grep -q 'github.com/lf-edge/eve-api/go' {} \; -execdir go mod tidy \; |
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.
You don't need to execute 3x the find command and look 3x for all files, you can just pass multiple -execdir arguments, like this:
find . -type f -name "go.mod" -exec grep -q 'github.com/lf-edge/eve-api/go' {} \; -execdir go get -u github.com/lf-edge/eve-api/go \; -execdir go mod tidy \; -execdir go mod vendor \;
063dbb1
to
5e871a4
Compare
@@ -834,6 +834,9 @@ cache-export-docker-load-all: $(LINUXKIT) $(addsuffix -cache-export-docker-load, | |||
proto-vendor: | |||
@$(DOCKER_GO) "cd pkg/pillar ; go mod vendor" $(CURDIR) proto | |||
|
|||
bump-eve-api: |
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.
@christoph-zededa , I forgot to mention that would be good to have this target explained in the make help
target....
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.
done; please have a look at the help text
5e871a4
to
bcfc94f
Compare
Signed-off-by: Christoph Ostarek <christoph@zededa.com>
Just autogenerated stuff after updating the eve-api and calling: make bump-eve-api Nothing to look at. Signed-off-by: Christoph Ostarek <christoph@zededa.com>
Signed-off-by: Christoph Ostarek <christoph@zededa.com>
Signed-off-by: Christoph Ostarek <christoph@zededa.com>
bcfc94f
to
9d6baf9
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 @christoph-zededa , LGTM.
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.
Looks good
to include lf-edge/eve-api#45