Skip to content
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 hack/build-go to build federation/cmd/federated-apiserver as well #24574

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions build/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,7 @@ function kube::build::source_targets() {
cmd
docs
examples
federation
Godeps/_workspace/src
Godeps/Godeps.json
hack
Expand Down
3 changes: 3 additions & 0 deletions hack/lib/golang.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ if [ -n "${KUBERNETES_CONTRIB:-}" ]; then
fi

# The set of server targets that we are only building for Linux
# Note: if you are adding something here, you might need to add it to
# kube::build::source_targets in build/common.sh as well.
kube::golang::server_targets() {
local targets=(
cmd/kube-proxy
Expand All @@ -34,6 +36,7 @@ kube::golang::server_targets() {
cmd/kubelet
cmd/kubemark
cmd/hyperkube
federation/cmd/federated-apiserver
plugin/cmd/kube-scheduler
)
if [ -n "${KUBERNETES_CONTRIB:-}" ]; then
Expand Down