#!/usr/bin/env bash # Copyright 2020 Lingfei Kong . 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 <