You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
194 lines
6.3 KiB
194 lines
6.3 KiB
#!/usr/bin/env bash
|
|
|
|
# Copyright 2020 Lingfei Kong <colin404@foxmail.com>. All rights reserved.
|
|
# Use of this source code is governed by a MIT style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
# shellcheck disable=SC2034 # Variables sourced in other scripts.
|
|
|
|
# The server platform we are building on.
|
|
readonly IAM_SUPPORTED_SERVER_PLATFORMS=(
|
|
linux/amd64
|
|
linux/arm64
|
|
)
|
|
|
|
# If we update this we should also update the set of platforms whose standard
|
|
# library is precompiled for in build/build-image/cross/Dockerfile
|
|
readonly IAM_SUPPORTED_CLIENT_PLATFORMS=(
|
|
linux/amd64
|
|
linux/arm64
|
|
)
|
|
|
|
# The set of server targets that we are only building for Linux
|
|
# If you update this list, please also update build/BUILD.
|
|
iam::golang::server_targets() {
|
|
local targets=(
|
|
iam-apiserver
|
|
iam-authz-server
|
|
iam-pump
|
|
iam-watcher
|
|
)
|
|
echo "${targets[@]}"
|
|
}
|
|
|
|
IFS=" " read -ra IAM_SERVER_TARGETS <<< "$(iam::golang::server_targets)"
|
|
readonly IAM_SERVER_TARGETS
|
|
readonly IAM_SERVER_BINARIES=("${IAM_SERVER_TARGETS[@]##*/}")
|
|
|
|
# The set of server targets we build docker images for
|
|
iam::golang::server_image_targets() {
|
|
# NOTE: this contains cmd targets for iam::build::get_docker_wrapped_binaries
|
|
local targets=(
|
|
cmd/iam-apiserver
|
|
cmd/iam-authz-server
|
|
cmd/iam-pump
|
|
cmd/iam-watcher
|
|
)
|
|
echo "${targets[@]}"
|
|
}
|
|
|
|
IFS=" " read -ra IAM_SERVER_IMAGE_TARGETS <<< "$(iam::golang::server_image_targets)"
|
|
readonly IAM_SERVER_IMAGE_TARGETS
|
|
readonly IAM_SERVER_IMAGE_BINARIES=("${IAM_SERVER_IMAGE_TARGETS[@]##*/}")
|
|
|
|
# ------------
|
|
# NOTE: All functions that return lists should use newlines.
|
|
# bash functions can't return arrays, and spaces are tricky, so newline
|
|
# separators are the preferred pattern.
|
|
# To transform a string of newline-separated items to an array, use iam::util::read-array:
|
|
# iam::util::read-array FOO < <(iam::golang::dups a b c a)
|
|
#
|
|
# ALWAYS remember to quote your subshells. Not doing so will break in
|
|
# bash 4.3, and potentially cause other issues.
|
|
# ------------
|
|
|
|
# Returns a sorted newline-separated list containing only duplicated items.
|
|
iam::golang::dups() {
|
|
# We use printf to insert newlines, which are required by sort.
|
|
printf "%s\n" "$@" | sort | uniq -d
|
|
}
|
|
|
|
# Returns a sorted newline-separated list with duplicated items removed.
|
|
iam::golang::dedup() {
|
|
# We use printf to insert newlines, which are required by sort.
|
|
printf "%s\n" "$@" | sort -u
|
|
}
|
|
|
|
# Depends on values of user-facing IAM_BUILD_PLATFORMS, IAM_FASTBUILD,
|
|
# and IAM_BUILDER_OS.
|
|
# Configures IAM_SERVER_PLATFORMS and IAM_CLIENT_PLATFORMS, then sets them
|
|
# to readonly.
|
|
# The configured vars will only contain platforms allowed by the
|
|
# IAM_SUPPORTED* vars at the top of this file.
|
|
declare -a IAM_SERVER_PLATFORMS
|
|
declare -a IAM_CLIENT_PLATFORMS
|
|
iam::golang::setup_platforms() {
|
|
if [[ -n "${IAM_BUILD_PLATFORMS:-}" ]]; then
|
|
# IAM_BUILD_PLATFORMS needs to be read into an array before the next
|
|
# step, or quoting treats it all as one element.
|
|
local -a platforms
|
|
IFS=" " read -ra platforms <<< "${IAM_BUILD_PLATFORMS}"
|
|
|
|
# Deduplicate to ensure the intersection trick with iam::golang::dups
|
|
# is not defeated by duplicates in user input.
|
|
iam::util::read-array platforms < <(iam::golang::dedup "${platforms[@]}")
|
|
|
|
# Use iam::golang::dups to restrict the builds to the platforms in
|
|
# IAM_SUPPORTED_*_PLATFORMS. Items should only appear at most once in each
|
|
# set, so if they appear twice after the merge they are in the intersection.
|
|
iam::util::read-array IAM_SERVER_PLATFORMS < <(iam::golang::dups \
|
|
"${platforms[@]}" \
|
|
"${IAM_SUPPORTED_SERVER_PLATFORMS[@]}" \
|
|
)
|
|
readonly IAM_SERVER_PLATFORMS
|
|
|
|
iam::util::read-array IAM_CLIENT_PLATFORMS < <(iam::golang::dups \
|
|
"${platforms[@]}" \
|
|
"${IAM_SUPPORTED_CLIENT_PLATFORMS[@]}" \
|
|
)
|
|
readonly IAM_CLIENT_PLATFORMS
|
|
|
|
elif [[ "${IAM_FASTBUILD:-}" == "true" ]]; then
|
|
IAM_SERVER_PLATFORMS=(linux/amd64)
|
|
readonly IAM_SERVER_PLATFORMS
|
|
IAM_CLIENT_PLATFORMS=(linux/amd64)
|
|
readonly IAM_CLIENT_PLATFORMS
|
|
else
|
|
IAM_SERVER_PLATFORMS=("${IAM_SUPPORTED_SERVER_PLATFORMS[@]}")
|
|
readonly IAM_SERVER_PLATFORMS
|
|
|
|
IAM_CLIENT_PLATFORMS=("${IAM_SUPPORTED_CLIENT_PLATFORMS[@]}")
|
|
readonly IAM_CLIENT_PLATFORMS
|
|
fi
|
|
}
|
|
|
|
iam::golang::setup_platforms
|
|
|
|
# The set of client targets that we are building for all platforms
|
|
# If you update this list, please also update build/BUILD.
|
|
readonly IAM_CLIENT_TARGETS=(
|
|
iamctl
|
|
)
|
|
readonly IAM_CLIENT_BINARIES=("${IAM_CLIENT_TARGETS[@]##*/}")
|
|
|
|
readonly IAM_ALL_TARGETS=(
|
|
"${IAM_SERVER_TARGETS[@]}"
|
|
"${IAM_CLIENT_TARGETS[@]}"
|
|
)
|
|
readonly IAM_ALL_BINARIES=("${IAM_ALL_TARGETS[@]##*/}")
|
|
|
|
# Asks golang what it thinks the host platform is. The go tool chain does some
|
|
# slightly different things when the target platform matches the host platform.
|
|
iam::golang::host_platform() {
|
|
echo "$(go env GOHOSTOS)/$(go env GOHOSTARCH)"
|
|
}
|
|
|
|
# Ensure the go tool exists and is a viable version.
|
|
iam::golang::verify_go_version() {
|
|
if [[ -z "$(command -v go)" ]]; then
|
|
iam::log::usage_from_stdin <<EOF
|
|
Can't find 'go' in PATH, please fix and retry.
|
|
See http://golang.org/doc/install for installation instructions.
|
|
EOF
|
|
return 2
|
|
fi
|
|
|
|
local go_version
|
|
IFS=" " read -ra go_version <<< "$(go version)"
|
|
local minimum_go_version
|
|
minimum_go_version=go1.13.4
|
|
if [[ "${minimum_go_version}" != $(echo -e "${minimum_go_version}\n${go_version[2]}" | sort -s -t. -k 1,1 -k 2,2n -k 3,3n | head -n1) && "${go_version[2]}" != "devel" ]]; then
|
|
iam::log::usage_from_stdin <<EOF
|
|
Detected go version: ${go_version[*]}.
|
|
IAM requires ${minimum_go_version} or greater.
|
|
Please install ${minimum_go_version} or later.
|
|
EOF
|
|
return 2
|
|
fi
|
|
}
|
|
|
|
# iam::golang::setup_env will check that the `go` commands is available in
|
|
# ${PATH}. It will also check that the Go version is good enough for the
|
|
# IAM build.
|
|
#
|
|
# Outputs:
|
|
# env-var GOBIN is unset (we want binaries in a predictable place)
|
|
# env-var GO15VENDOREXPERIMENT=1
|
|
# env-var GO111MODULE=on
|
|
iam::golang::setup_env() {
|
|
iam::golang::verify_go_version
|
|
|
|
# Unset GOBIN in case it already exists in the current session.
|
|
unset GOBIN
|
|
|
|
# This seems to matter to some tools
|
|
export GO15VENDOREXPERIMENT=1
|
|
|
|
# Open go module feature
|
|
export GO111MODULE=on
|
|
|
|
# This is for sanity. Without it, user umasks leak through into release
|
|
# artifacts.
|
|
umask 0022
|
|
}
|