mirror of
https://github.com/kubernetes-sigs/kind.git
synced 2025-12-01 07:26:05 +07:00
60 lines
2.5 KiB
Bash
Executable File
60 lines
2.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2018 The Kubernetes Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# 'go generate's kind, using tools from vendor (go-bindata)
|
|
set -o errexit -o nounset -o pipefail
|
|
|
|
# cd to the repo root
|
|
REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd -P)"
|
|
cd "${REPO_ROOT}"
|
|
|
|
# build the generators using the tools module
|
|
cd "hack/tools"
|
|
"${REPO_ROOT}/hack/go_container.sh" go build -o /out/defaulter-gen k8s.io/code-generator/cmd/defaulter-gen
|
|
"${REPO_ROOT}/hack/go_container.sh" go build -o /out/deepcopy-gen k8s.io/code-generator/cmd/deepcopy-gen
|
|
"${REPO_ROOT}/hack/go_container.sh" go build -o /out/conversion-gen k8s.io/code-generator/cmd/conversion-gen
|
|
# go back to the root
|
|
cd "${REPO_ROOT}"
|
|
|
|
# turn off module mode before running the generators
|
|
# https://github.com/kubernetes/code-generator/issues/69
|
|
# we also need to populate vendor
|
|
hack/go_container.sh go mod tidy
|
|
hack/go_container.sh go mod vendor
|
|
export GO111MODULE="off"
|
|
|
|
# fake being in a gopath
|
|
FAKE_GOPATH="$(mktemp -d)"
|
|
trap 'rm -rf ${FAKE_GOPATH}' EXIT
|
|
|
|
FAKE_REPOPATH="${FAKE_GOPATH}/src/sigs.k8s.io/kind"
|
|
mkdir -p "$(dirname "${FAKE_REPOPATH}")" && ln -s "${REPO_ROOT}" "${FAKE_REPOPATH}"
|
|
|
|
export GOPATH="${FAKE_GOPATH}"
|
|
cd "${FAKE_REPOPATH}"
|
|
|
|
# run the generators
|
|
bin/deepcopy-gen -i ./pkg/internal/apis/config/ -O zz_generated.deepcopy --go-header-file hack/tools/boilerplate.go.txt
|
|
bin/defaulter-gen -i ./pkg/internal/apis/config/ -O zz_generated.default --go-header-file hack/tools/boilerplate.go.txt
|
|
|
|
bin/deepcopy-gen -i ./pkg/apis/config/v1alpha3 -O zz_generated.deepcopy --go-header-file hack/tools/boilerplate.go.txt
|
|
bin/defaulter-gen -i ./pkg/apis/config/v1alpha3 -O zz_generated.default --go-header-file hack/tools/boilerplate.go.txt
|
|
bin/conversion-gen -i ./pkg/internal/apis/config/v1alpha3 -O zz_generated.conversion --go-header-file hack/tools/boilerplate.go.txt
|
|
|
|
# set module mode back, return to repo root and gofmt to ensure we format generated code
|
|
export GO111MODULE="on"
|
|
cd "${REPO_ROOT}"
|
|
hack/update/gofmt.sh
|