mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
eb11e9ac8a
Required for bootstrapping bazel stamping since we cannot use "bazel build" during the workspace_status command. Adds a small script that builds the pseudo-version tool in bazel (without stamping) and uploads it to the mirror. On the first bazel build with stamping, the pseudo-version tool is downloaded.
71 lines
2.0 KiB
Bash
Executable File
71 lines
2.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
shopt -s inherit_errexit
|
|
|
|
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd)
|
|
REPOSITORY_ROOT="${REPOSITORY_ROOT:-$(cd "${SCRIPT_DIR}" && git rev-parse --show-toplevel)}"
|
|
|
|
goos() {
|
|
case "$(uname -sr)" in
|
|
Darwin*) echo 'darwin' ;;
|
|
Linux*) echo 'linux' ;;
|
|
*)
|
|
echo 'Unknown OS' >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
}
|
|
|
|
goarch() {
|
|
case $(uname -m) in
|
|
x86_64) echo 'amd64' ;;
|
|
arm) echo 'arm64' ;; # this is slightly simplified, but we only care about arm64
|
|
*)
|
|
echo 'Unknown arch' >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
}
|
|
|
|
ensure_pseudo_version_tool() {
|
|
if [[ ! -f "${REPOSITORY_ROOT}/tools/pseudo-version" ]]; then
|
|
get_pseudo_version_tool
|
|
fi
|
|
expected=$(cat "${REPOSITORY_ROOT}/tools/pseudo_version_$(goos)_$(goarch).sha256")
|
|
if ! sha256sum -c --status <(echo "${expected} ${REPOSITORY_ROOT}/tools/pseudo-version"); then
|
|
get_pseudo_version_tool
|
|
fi
|
|
}
|
|
|
|
get_pseudo_version_tool() {
|
|
out="${REPOSITORY_ROOT}/tools/pseudo-version"
|
|
hash=$(cat "${REPOSITORY_ROOT}/tools/pseudo_version_$(goos)_$(goarch).sha256")
|
|
url=https://cdn.confidential.cloud/constellation/cas/sha256/${hash}
|
|
if command -v curl &> /dev/null; then
|
|
curl -fsSL "${url}" -o "${out}"
|
|
elif command -v wget &> /dev/null; then
|
|
wget -q -O "${out}" "${url}"
|
|
else
|
|
echo "curl or wget is required to download the pseudo-version tool" >&2
|
|
exit 1
|
|
fi
|
|
chmod +x "${out}"
|
|
}
|
|
|
|
pseudo_version() {
|
|
ensure_pseudo_version_tool
|
|
"${REPOSITORY_ROOT}/tools/pseudo-version" -skip-v
|
|
}
|
|
|
|
timestamp() {
|
|
ensure_pseudo_version_tool
|
|
"${REPOSITORY_ROOT}/tools/pseudo-version" -print-timestamp -timestamp-format '2006-01-02T15:04:05Z07:00'
|
|
}
|
|
|
|
echo "REPO_URL https://github.com/edgelesssys/constellation.git"
|
|
echo "STABLE_STAMP_COMMIT $(git rev-parse HEAD)"
|
|
echo "STABLE_STAMP_STATE $(git update-index -q --really-refresh && git diff-index --quiet HEAD -- && echo "clean" || echo "dirty")"
|
|
echo "STABLE_STAMP_VERSION $(pseudo_version)"
|
|
echo "STABLE_STAMP_TIME $(timestamp)"
|