File tree 2 files changed +13
-13
lines changed
2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 16
16
17
17
set -euxo pipefail
18
18
19
- # Initialize necessary environment variables and git identity .
19
+ # Initialize necessary environment variables.
20
20
function init {
21
21
export GOROOT=$ROOT_DIR /golang
22
- git config --global user.email
" [email protected] "
23
- git config --global user.name " k8s scalability"
24
22
}
25
23
26
24
function build_kube_cross {
@@ -58,18 +56,15 @@ WORKDIR $GOPATH#' default/Dockerfile
58
56
}
59
57
60
58
function build_kubernetes {
61
- cd $ROOT_DIR /k8s.io/kubernetes/build/build-image
62
-
63
- # Change the base image of kube-build to our own kube-cross image.
64
- sed -i ' s#FROM .*#FROM gcr.io/k8s-testimages/kube-cross-amd64:latest-go-master-debian-default#' Dockerfile
65
-
66
59
cd $ROOT_DIR /k8s.io/kubernetes
67
- # Commit changes - needed to not create a "dirty" build, so we can push the
68
- # build to <bucket>/ci directory and update latest.txt file.
69
- git commit -am " Upgrade cross Dockerfile to use kube-cross with newest golang"
70
60
71
61
# Build Kubernetes using our kube-cross image.
72
- make quick-release
62
+ # Also pass GOTOOLCHAIN=local to make sure kube-build
63
+ # uses the golang version built locally in build-go.sh.
64
+ make quick-release \
65
+ GOTOOLCHAIN=local \
66
+ KUBE_CROSS_IMAGE=gcr.io/k8s-testimages/kube-cross-amd64 \
67
+ KUBE_CROSS_VERSION=latest-go-master-debian-default
73
68
}
74
69
75
70
init
Original file line number Diff line number Diff line change @@ -18,4 +18,9 @@ set -euxo pipefail
18
18
19
19
# Push Kubernetes build to GCS.
20
20
cd $ROOT_DIR /k8s.io/kubernetes
21
- ../release/push-build.sh --nomock --ci --bucket=$GCS_BUCKET --private-bucket
21
+ ../release/push-build.sh \
22
+ --nomock \
23
+ --ci \
24
+ --bucket=$GCS_BUCKET \
25
+ --private-bucket \
26
+ --version-suffix=$( date +%s)
You can’t perform that action at this time.
0 commit comments