-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
[BEAM-3804] Build Go SDK container with gradle #4833
Conversation
R: @lukecwik |
sdks/go/container/build.gradle
Outdated
} | ||
|
||
golang { | ||
packagePath = 'github.com/apache/beam/sdks/python/boot' |
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.
This doesn't seem like the appropriate package path.
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.
Fixed the typo for clarity. This package path is not actually used, because we're building a main package.
} | ||
|
||
docker { | ||
String repositoryRoot |
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.
It seems like we could make this part of the applyDockerNature as it seems duplicated amongst the three docker container build.gradle files.
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.
Agreed. I'll try to spend some time on this on Gradle fixit day.
Thanks @lukecwik. PTAL |
Code is similar to how the Python and Java containers are built.