2018-07-06 03:23:27 +00:00
|
|
|
#!/bin/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.
|
|
|
|
|
2022-07-08 16:27:47 +00:00
|
|
|
GO_BUILD_CMD="go build"
|
|
|
|
|
2019-06-28 21:40:18 +00:00
|
|
|
if [ -n "$DEBUG" ]; then
|
2019-05-14 02:31:06 +00:00
|
|
|
set -x
|
2022-07-08 16:27:47 +00:00
|
|
|
GO_BUILD_CMD="go build -v"
|
2019-05-14 02:31:06 +00:00
|
|
|
fi
|
|
|
|
|
2018-07-06 03:23:27 +00:00
|
|
|
set -o errexit
|
|
|
|
set -o nounset
|
|
|
|
set -o pipefail
|
|
|
|
|
2018-07-28 00:39:01 +00:00
|
|
|
declare -a mandatory
|
|
|
|
mandatory=(
|
|
|
|
PKG
|
|
|
|
ARCH
|
2020-08-20 01:20:40 +00:00
|
|
|
COMMIT_SHA
|
2018-07-28 00:39:01 +00:00
|
|
|
REPO_INFO
|
|
|
|
TAG
|
|
|
|
)
|
|
|
|
|
2018-08-02 20:58:58 +00:00
|
|
|
for var in "${mandatory[@]}"; do
|
|
|
|
if [[ -z "${!var:-}" ]]; then
|
2018-07-28 00:39:01 +00:00
|
|
|
echo "Environment variable $var must be set"
|
2022-07-08 16:27:47 +00:00
|
|
|
exit 1
|
2018-07-28 00:39:01 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2018-07-06 03:23:27 +00:00
|
|
|
export CGO_ENABLED=0
|
2020-02-01 01:56:55 +00:00
|
|
|
export GOARCH=${ARCH}
|
2018-07-06 03:23:27 +00:00
|
|
|
|
2021-11-12 19:46:35 +00:00
|
|
|
TARGETS_DIR="rootfs/bin/${ARCH}"
|
|
|
|
echo "Building targets for ${ARCH}, generated targets in ${TARGETS_DIR} directory."
|
|
|
|
|
2022-07-08 16:27:47 +00:00
|
|
|
echo "Building ${PKG}/cmd/nginx"
|
|
|
|
|
|
|
|
${GO_BUILD_CMD} \
|
2020-08-22 23:31:00 +00:00
|
|
|
-trimpath -ldflags="-buildid= -w -s \
|
2019-06-28 21:40:18 +00:00
|
|
|
-X ${PKG}/version.RELEASE=${TAG} \
|
2020-08-20 01:20:40 +00:00
|
|
|
-X ${PKG}/version.COMMIT=${COMMIT_SHA} \
|
2019-06-28 21:40:18 +00:00
|
|
|
-X ${PKG}/version.REPO=${REPO_INFO}" \
|
2021-11-12 19:46:35 +00:00
|
|
|
-o "${TARGETS_DIR}/nginx-ingress-controller" "${PKG}/cmd/nginx"
|
2019-02-08 16:25:04 +00:00
|
|
|
|
2022-07-08 16:27:47 +00:00
|
|
|
echo "Building ${PKG}/cmd/dbg"
|
|
|
|
|
|
|
|
${GO_BUILD_CMD} \
|
2020-08-22 23:31:00 +00:00
|
|
|
-trimpath -ldflags="-buildid= -w -s \
|
2019-06-28 21:40:18 +00:00
|
|
|
-X ${PKG}/version.RELEASE=${TAG} \
|
2020-08-20 01:20:40 +00:00
|
|
|
-X ${PKG}/version.COMMIT=${COMMIT_SHA} \
|
2019-06-28 21:40:18 +00:00
|
|
|
-X ${PKG}/version.REPO=${REPO_INFO}" \
|
2021-11-12 19:46:35 +00:00
|
|
|
-o "${TARGETS_DIR}/dbg" "${PKG}/cmd/dbg"
|
2019-09-01 18:21:24 +00:00
|
|
|
|
2022-07-08 16:27:47 +00:00
|
|
|
echo "Building ${PKG}/cmd/waitshutdown"
|
|
|
|
|
|
|
|
${GO_BUILD_CMD} \
|
2020-08-22 23:31:00 +00:00
|
|
|
-trimpath -ldflags="-buildid= -w -s \
|
2019-09-01 18:21:24 +00:00
|
|
|
-X ${PKG}/version.RELEASE=${TAG} \
|
2020-08-20 01:20:40 +00:00
|
|
|
-X ${PKG}/version.COMMIT=${COMMIT_SHA} \
|
2019-09-01 18:21:24 +00:00
|
|
|
-X ${PKG}/version.REPO=${REPO_INFO}" \
|
2021-11-12 19:46:35 +00:00
|
|
|
-o "${TARGETS_DIR}/wait-shutdown" "${PKG}/cmd/waitshutdown"
|
2022-04-09 04:48:04 +00:00
|
|
|
|