summaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorIan Lewis <ianlewis@google.com>2021-05-27 18:55:30 -0700
committergVisor bot <gvisor-bot@google.com>2021-05-27 18:57:37 -0700
commite8fc815b6ef58b6faa136ef239f89ec98a8e55b4 (patch)
tree2654626b5489d89b0ec957d65a9f1f8b41fcbdf1 /tools
parent121af37738525a629ecc11863b7454b67c0f4117 (diff)
Fix specific releases and update install instructions.
Fixes #6084 PiperOrigin-RevId: 376293659
Diffstat (limited to 'tools')
-rwxr-xr-xtools/make_release.sh21
1 files changed, 17 insertions, 4 deletions
diff --git a/tools/make_release.sh b/tools/make_release.sh
index 10742dd54..e125c7e96 100755
--- a/tools/make_release.sh
+++ b/tools/make_release.sh
@@ -22,8 +22,10 @@ if [[ "$#" -le 2 ]]; then
fi
set -xeo pipefail
-declare -r private_key="$1"; shift
-declare -r root="$1"; shift
+declare -r private_key="$1"
+shift
+declare -r root="$1"
+shift
declare -a binaries
declare -a pkgs
@@ -44,7 +46,7 @@ install_raw() {
name=$(basename "${binary}")
mkdir -p "${root}/$1/${arch}"
cp -f "${binary}" "${root}/$1/${arch}"
- (cd "${root}/$1/${arch}" && sha512sum "${name}" > "${name}.sha512")
+ (cd "${root}/$1/${arch}" && sha512sum "${name}" >"${name}.sha512")
done
}
@@ -55,7 +57,8 @@ install_apt() {
# If nightly, install only nightly artifacts.
if [[ "${NIGHTLY:-false}" == "true" ]]; then
- # The "latest" directory and current date.
+ # Install the nightly release.
+ # https://gvisor.dev/docs/user_guide/install/#nightly
stamp="$(date -Idate)"
install_raw "nightly/latest"
install_raw "nightly/${stamp}"
@@ -69,13 +72,23 @@ else
for tag in ${tags}; do
name=$(echo "${tag}" | cut -d'-' -f2)
base=$(echo "${name}" | cut -d'.' -f1)
+ # Install the "specific" release. This is the latest release with the
+ # given date.
+ # https://gvisor.dev/docs/user_guide/install/#specific-release
+ install_raw "release/${base}"
+ # Install the "point release".
+ # https://gvisor.dev/docs/user_guide/install/#point-release
install_raw "release/${name}"
+ # Install the latest release.
+ # https://gvisor.dev/docs/user_guide/install/#latest-release
install_raw "release/latest"
+
install_apt "release"
install_apt "${base}"
done
else
# Otherwise, assume it is a raw master commit.
+ # https://gvisor.dev/docs/user_guide/install/#head
install_raw "master/latest"
install_apt "master"
fi