-
Notifications
You must be signed in to change notification settings - Fork 386
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
Question: Any support for local repository? #557
Comments
#68 and #132 are feature requests to improve the experience with local repository a bit. They've been open a while, but I still think they should be implemented. We can't generate build files for a I'd rather not support anything that copies a local directory, then generates build files. I can't find the issue, but that's been considered earlier. It's impractical to keep it up to date with local changes. |
I wonder if this can be solved with some sym links to the local repository. go_local_repository(
name = "localpkg",
path = "/tmp/localpkg",
) This could generate the BUILD files in a similar fashion to go_repository, and sym link to the actual files. Thanks for the quick response. I'll subscribe to those issues and close this out for now. |
I'd like this feature. Can this please be re-opened? |
Found myself needing this again and the workaround above is rather cumbersome. I'll reopen 😄 |
I have a go_repository remote dependency and I want to check it out locally and test some changes. The dependency is not a bazel project and does not have a WORKSPACE so
local_repository
does not work.Is there any support for go_repository to reference a path on the host machine?
The text was updated successfully, but these errors were encountered: