Skip to content

Commit

Permalink
add CI script for TC
Browse files Browse the repository at this point in the history
  • Loading branch information
OmkarDeshpande7 committed Oct 16, 2023
1 parent 9e13814 commit 9cbb11a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .ci/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
source ~/.bashrc
GO_VERSION=${GO_VERSION:-1.19}

configure_go() {
if [ -n "${USE_SYSTEM_GO:-}" ] ; then
echo "\$USE_SYSTEM_GO set, using system go instead of gimme"
return 0
else
which gimme > /dev/null || (echo "error: missing required command 'gimme'" && exit 1)
eval "$(GIMME_GO_VERSION=${GO_VERSION} gimme)"
fi
which go
go version
}

configure_go

KUBE_BUILD_PLATFORMS=linux/amd64 make all WHAT=cmd/kubelet GOFLAGS=-v

0 comments on commit 9cbb11a

Please sign in to comment.