-
Notifications
You must be signed in to change notification settings - Fork 770
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
[WIP] Update to use ./kompose instead of $GOPATH kompose binary #766
Conversation
@cdrage, thank you for the pull request! We'll ping some people to review your PR. @surajnarwade and @procrypt, please review this. |
The issue is that when running `make test-cmd` you'll have to cp kompose to the /usr/local/bin directory or the $GOPATH directory. Since `make test` is being used consistently in the same git diretory, it makes sense to use the local-built binary.
Blocked on #770 since |
@@ -4,9 +4,6 @@ sudo: required | |||
|
|||
language: go | |||
|
|||
# make this also work for forks | |||
go_import_path: github.com/kubernetes/kompose |
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.
Why is this removed? It shouldn't have any effect on this, or does it?
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.
Yeah, I need to re-work this...
Closing for now. |
The issue is that when running
make test-cmd
you'll have to cp komposeto the /usr/local/bin directory or the $GOPATH directory.
Since
make test
is being used consistently in the same git diretory,it makes sense to use the local-built binary.