File tree Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -9,5 +9,5 @@ require (
99 golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8
1010 k8s.io/api v0.0.0-20190409021203-6e4e0e4f393b // indirect
1111 k8s.io/apimachinery v0.0.0-20190404173353-6a84e37a896d
12- sigs.k8s.io/kustomize/v3 v3.1.0
12+ sigs.k8s.io/kustomize/v3 v3.1.1-0.20190821175718-4b67a6de1296
1313)
Original file line number Diff line number Diff line change @@ -163,8 +163,8 @@ k8s.io/klog v0.3.3 h1:niceAagH1tzskmaie/icWd7ci1wbG7Bf2c6YGcQv+3c=
163163k8s.io/klog v0.3.3 /go.mod h1:Gq+BEi5rUBO/HRz0bTSXDUcqjScdoY3a9IHpCEIOOfk =
164164k8s.io/kube-openapi v0.0.0-20190603182131-db7b694dc208 h1:5sW+fEHvlJI3Ngolx30CmubFulwH28DhKjGf70Xmtco =
165165k8s.io/kube-openapi v0.0.0-20190603182131-db7b694dc208 /go.mod h1:nfDlWeOsu3pUf4yWGL+ERqohP4YsZcBJXWMK+gkzOA4 =
166- sigs.k8s.io/kustomize/v3 v3.1.0 h1:FnNC1UtUjZlepvWUGwaAcFHw2rjNIaZvBUPCvaXz0Fo =
167- sigs.k8s.io/kustomize/v3 v3.1.0 /go.mod h1:ztX4zYc/QIww3gSripwF7TBOarBTm5BvyAMem0kCzOE =
166+ sigs.k8s.io/kustomize/v3 v3.1.1-0.20190821175718-4b67a6de1296 h1:iQaIG5Dq+3qSiaFrJ/l/0MjjxKmdwyVNpKRYJwUe/+0 =
167+ sigs.k8s.io/kustomize/v3 v3.1.1-0.20190821175718-4b67a6de1296 /go.mod h1:ztX4zYc/QIww3gSripwF7TBOarBTm5BvyAMem0kCzOE =
168168sigs.k8s.io/structured-merge-diff v0.0.0-20190525122527-15d366b2352e /go.mod h1:wWxsB5ozmmv/SG7nM11ayaAW51xMvak/t1r0CSlcokI =
169169sigs.k8s.io/yaml v1.1.0 h1:4A07+ZFc2wgJwo8YNlQpr1rVlgUDlxXHhPJciaPY5gs =
170170sigs.k8s.io/yaml v1.1.0 /go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o =
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ export GO111MODULE="on"
2929GOPROXY=" ${GOPROXY:- https:// proxy.golang.org} "
3030export GOPROXY
3131
32- # build and kind
33- go install -v .
32+ # build and test kind
33+ hack/release/build/cross.sh
3434go test -v ./...
3535
3636# build and test kindnetd
Original file line number Diff line number Diff line change @@ -49,12 +49,13 @@ build() {
4949 make build
5050}
5151
52- # TODO(bentheelder): support more platforms
5352echo " Building in parallel for:"
5453build " linux" " amd64" & \
5554build " linux" " arm" & \
5655build " linux" " arm64" & \
5756build " linux" " ppc64le" & \
5857build " darwin" " amd64" & \
5958build " windows" " amd64" & \
60- wait
59+ # we want each pid to be an argument
60+ # shellcheck disable=SC2046
61+ wait $( jobs -p)
Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ set_version "${1}"
6565make_commit " ${1} "
6666add_tag " ${1} "
6767echo " Building ..."
68+ make clean
6869./hack/release/build/cross.sh --clean
6970
7071# update to the second version
You can’t perform that action at this time.
0 commit comments