-
Notifications
You must be signed in to change notification settings - Fork 402
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
Removed use of the of BUILD_FLAGS in apiserver makefile #1336
Conversation
Removed use of variables used in building BUILD_FLAGS Fixes ray-project#1335
@blublinsky, @tedhtchang, @scarlet25151 and @anishasthana cc: @kevin85421 |
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.
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.
Update: I was able to replicate the issue. It happens when I newly clone the repo from the my own fork without adding the remote upstream repo because the tags are coming from the remote.
git clone [email protected]:tedhtchang/kuberay.git
cd kuberay/apiserver
git tag # returns nothing
make build
fatal: No names found, cannot describe anything.
Verified make build ran fine with the change.
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.
LGTM
…1336) Removed use of the of BUILD_FLAGS in apiserver makefile
…1336) Removed use of the of BUILD_FLAGS in apiserver makefile
…1336) Removed use of the of BUILD_FLAGS in apiserver makefile
Removed use of variables used in building BUILD_FLAGS
Why are these changes needed?
When the tags are not available in the git repo the makefile an error is reported.
Related issue number
Fixes #1335
Closes #1335
Checks