2021-11-15 15:55:57 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#-------------------------------------------------------------------------------------------------------------
|
|
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
|
|
|
|
#-------------------------------------------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/github.md
|
|
|
|
# Maintainer: The VS Code and Codespaces Teams
|
|
|
|
#
|
|
|
|
# Syntax: ./github-debian.sh [version]
|
|
|
|
|
|
|
|
CLI_VERSION=${1:-"latest"}
|
|
|
|
|
|
|
|
GITHUB_CLI_ARCHIVE_GPG_KEY=C99B11DEB97541F0
|
|
|
|
GPG_KEY_SERVERS="keyserver hkp://keyserver.ubuntu.com:80
|
|
|
|
keyserver hkps://keys.openpgp.org
|
|
|
|
keyserver hkp://keyserver.pgp.com"
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
if [ "$(id -u)" -ne 0 ]; then
|
|
|
|
echo -e 'Script must be run as root. Use sudo, su, or add "USER root" to your Dockerfile before running this script.'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Get central common setting
|
|
|
|
get_common_setting() {
|
|
|
|
if [ "${common_settings_file_loaded}" != "true" ]; then
|
|
|
|
curl -sfL "https://aka.ms/vscode-dev-containers/script-library/settings.env" 2>/dev/null -o /tmp/vsdc-settings.env || echo "Could not download settings file. Skipping."
|
|
|
|
common_settings_file_loaded=true
|
|
|
|
fi
|
|
|
|
if [ -f "/tmp/vsdc-settings.env" ]; then
|
|
|
|
local multi_line=""
|
|
|
|
if [ "$2" = "true" ]; then multi_line="-z"; fi
|
|
|
|
local result="$(grep ${multi_line} -oP "$1=\"?\K[^\"]+" /tmp/vsdc-settings.env | tr -d '\0')"
|
|
|
|
if [ ! -z "${result}" ]; then declare -g $1="${result}"; fi
|
|
|
|
fi
|
|
|
|
echo "$1=${!1}"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Import the specified key in a variable name passed in as
|
|
|
|
receive_gpg_keys() {
|
|
|
|
get_common_setting $1
|
|
|
|
local keys=${!1}
|
|
|
|
get_common_setting GPG_KEY_SERVERS true
|
|
|
|
|
2021-11-15 17:18:36 -05:00
|
|
|
# Use a temporary location for gpg keys to avoid polluting image
|
2021-11-15 15:55:57 -05:00
|
|
|
export GNUPGHOME="/tmp/tmp-gnupg"
|
|
|
|
mkdir -p ${GNUPGHOME}
|
|
|
|
chmod 700 ${GNUPGHOME}
|
|
|
|
echo -e "disable-ipv6\n${GPG_KEY_SERVERS}" > ${GNUPGHOME}/dirmngr.conf
|
|
|
|
# GPG key download sometimes fails for some reason and retrying fixes it.
|
|
|
|
local retry_count=0
|
|
|
|
local gpg_ok="false"
|
|
|
|
set +e
|
|
|
|
until [ "${gpg_ok}" = "true" ] || [ "${retry_count}" -eq "5" ];
|
|
|
|
do
|
|
|
|
echo "(*) Downloading GPG key..."
|
|
|
|
( echo "${keys}" | xargs -n 1 gpg --recv-keys) 2>&1 && gpg_ok="true"
|
|
|
|
if [ "${gpg_ok}" != "true" ]; then
|
|
|
|
echo "(*) Failed getting key, retring in 10s..."
|
|
|
|
(( retry_count++ ))
|
|
|
|
sleep 10s
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
set -e
|
|
|
|
if [ "${gpg_ok}" = "false" ]; then
|
|
|
|
echo "(!) Failed to get gpg key."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Figure out correct version of a three part version number is not passed
|
|
|
|
find_version_from_git_tags() {
|
|
|
|
local variable_name=$1
|
|
|
|
local requested_version=${!variable_name}
|
|
|
|
if [ "${requested_version}" = "none" ]; then return; fi
|
|
|
|
local repository=$2
|
|
|
|
local prefix=${3:-"tags/v"}
|
|
|
|
local separator=${4:-"."}
|
|
|
|
local last_part_optional=${5:-"false"}
|
|
|
|
if [ "$(echo "${requested_version}" | grep -o "." | wc -l)" != "2" ]; then
|
|
|
|
local escaped_separator=${separator//./\\.}
|
|
|
|
local last_part
|
|
|
|
if [ "${last_part_optional}" = "true" ]; then
|
|
|
|
last_part="(${escaped_separator}[0-9]+)?"
|
|
|
|
else
|
|
|
|
last_part="${escaped_separator}[0-9]+"
|
|
|
|
fi
|
|
|
|
local regex="${prefix}\\K[0-9]+${escaped_separator}[0-9]+${last_part}$"
|
|
|
|
local version_list="$(git ls-remote --tags ${repository} | grep -oP "${regex}" | tr -d ' ' | tr "${separator}" "." | sort -rV)"
|
|
|
|
if [ "${requested_version}" = "latest" ] || [ "${requested_version}" = "current" ] || [ "${requested_version}" = "lts" ]; then
|
|
|
|
declare -g ${variable_name}="$(echo "${version_list}" | head -n 1)"
|
|
|
|
else
|
|
|
|
set +e
|
|
|
|
declare -g ${variable_name}="$(echo "${version_list}" | grep -E -m 1 "^${requested_version//./\\.}([\\.\\s]|$)")"
|
|
|
|
set -e
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ -z "${!variable_name}" ] || ! echo "${version_list}" | grep "^${!variable_name//./\\.}$" > /dev/null 2>&1; then
|
|
|
|
echo -e "Invalid ${variable_name} value: ${requested_version}\nValid values:\n${version_list}" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
echo "${variable_name}=${!variable_name}"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Import the specified key in a variable name passed in as
|
|
|
|
receive_gpg_keys() {
|
|
|
|
get_common_setting $1
|
|
|
|
local keys=${!1}
|
|
|
|
get_common_setting GPG_KEY_SERVERS true
|
|
|
|
local keyring_args=""
|
|
|
|
if [ ! -z "$2" ]; then
|
|
|
|
keyring_args="--no-default-keyring --keyring $2"
|
|
|
|
fi
|
|
|
|
|
2021-11-15 17:18:36 -05:00
|
|
|
# Use a temporary location for gpg keys to avoid polluting image
|
2021-11-15 15:55:57 -05:00
|
|
|
export GNUPGHOME="/tmp/tmp-gnupg"
|
|
|
|
mkdir -p ${GNUPGHOME}
|
|
|
|
chmod 700 ${GNUPGHOME}
|
|
|
|
echo -e "disable-ipv6\n${GPG_KEY_SERVERS}" > ${GNUPGHOME}/dirmngr.conf
|
|
|
|
# GPG key download sometimes fails for some reason and retrying fixes it.
|
|
|
|
local retry_count=0
|
|
|
|
local gpg_ok="false"
|
|
|
|
set +e
|
|
|
|
until [ "${gpg_ok}" = "true" ] || [ "${retry_count}" -eq "5" ];
|
|
|
|
do
|
|
|
|
echo "(*) Downloading GPG key..."
|
|
|
|
( echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true"
|
|
|
|
if [ "${gpg_ok}" != "true" ]; then
|
|
|
|
echo "(*) Failed getting key, retring in 10s..."
|
|
|
|
(( retry_count++ ))
|
|
|
|
sleep 10s
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
set -e
|
|
|
|
if [ "${gpg_ok}" = "false" ]; then
|
|
|
|
echo "(!) Failed to get gpg key."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Function to run apt-get if needed
|
|
|
|
apt_get_update_if_needed()
|
|
|
|
{
|
|
|
|
if [ ! -d "/var/lib/apt/lists" ] || [ "$(ls /var/lib/apt/lists/ | wc -l)" = "0" ]; then
|
|
|
|
echo "Running apt-get update..."
|
|
|
|
apt-get update
|
|
|
|
else
|
|
|
|
echo "Skipping apt-get update."
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Checks if packages are installed and installs them if not
|
|
|
|
check_packages() {
|
|
|
|
if ! dpkg -s "$@" > /dev/null 2>&1; then
|
|
|
|
apt_get_update_if_needed
|
|
|
|
apt-get -y install --no-install-recommends "$@"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
|
|
|
# Install curl, apt-transport-https, curl, gpg, or dirmngr, git if missing
|
|
|
|
check_packages curl ca-certificates apt-transport-https dirmngr gnupg2
|
|
|
|
if ! type git > /dev/null 2>&1; then
|
|
|
|
apt_get_update_if_needed
|
|
|
|
apt-get -y install --no-install-recommends git
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Soft version matching
|
|
|
|
if [ "${CLI_VERSION}" != "latest" ] && [ "${CLI_VERSION}" != "lts" ] && [ "${CLI_VERSION}" != "stable" ]; then
|
|
|
|
find_version_from_git_tags CLI_VERSION "https://github.com/cli/cli"
|
|
|
|
version_suffix="=${CLI_VERSION}"
|
|
|
|
else
|
|
|
|
version_suffix=""
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Install the GitHub CLI
|
|
|
|
echo "Downloading github CLI..."
|
|
|
|
# Import key safely (new method rather than deprecated apt-key approach) and install
|
|
|
|
. /etc/os-release
|
|
|
|
receive_gpg_keys GITHUB_CLI_ARCHIVE_GPG_KEY /usr/share/keyrings/githubcli-archive-keyring.gpg
|
|
|
|
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages ${VERSION_CODENAME} main" > /etc/apt/sources.list.d/github-cli.list
|
|
|
|
apt-get update
|
|
|
|
apt-get -y install "gh${version_suffix}"
|
|
|
|
rm -rf "/tmp/gh/gnupg"
|
|
|
|
echo "Done!"
|