gitlab-build-images/scripts/cache-google-chrome
2022-08-22 12:22:07 +03:00

95 lines
3.1 KiB
Bash
Executable file

#!/bin/bash
# This script attempts to copy the latest version of the Google Chrome Debian
# package into our own package registry. Google yanks old versions regularly,
# making it hard to keep up with all the new versions.
set -e
export DEBIAN_FRONTEND=noninteractive
function cache-chrome() {
PKG=google-chrome-stable
curl -sS -L https://dl.google.com/linux/linux_signing_key.pub | apt-key add -
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >/etc/apt/sources.list.d/google.list
echo "Updating apt to get Google Chrome packages..."
apt-get -y -qq update
echo "Checking for latest Chrome version in apt repository..."
LATEST_VERSION=$(apt-cache show $PKG | grep Version | sort | tail -1 | sed -e "s/Version: //")
CHROME_DEB="google-chrome-stable_${LATEST_VERSION}_amd64.deb"
CHROME_URL="${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/${PKG}/${LATEST_VERSION}/${CHROME_DEB}"
echo "Checking if cache has $CHROME_DEB"
FILE_CHECK=$(curl --silent --location --head --output /dev/null --write "%{http_code}\\n" "$CHROME_URL")
if [ "$FILE_CHECK" -eq "200" ]; then
echo "Latest version $LATEST_VERSION is already cached!"
else
echo "Downloading latest Chrome version ($LATEST_VERSION) in apt repository..."
cd /tmp
apt-get download $PKG
if ! [ -f "$CHROME_DEB" ]; then
echo "Downloaded file didn't have expected name: $CHROME_DEB"
ls
exit 1
fi
echo "Transferring $CHROME_DEB to GitLab packages"
curl --fail --header "JOB-TOKEN: ${CI_JOB_TOKEN}" \
--upload-file "./{$CHROME_DEB}" \
"$CHROME_URL"
fi
}
function cache-chromium() {
PKG=chromium
echo "Checking for latest Chromium version in apt repository..."
LATEST_VERSION=$(apt-cache show $PKG | grep Version | sort | tail -1 | sed -e "s/Version: //")
VERSION_NUMBER=$(echo $LATEST_VERSION | sed -e "s/~deb.*//") # remove debian version part to have chrome and chromium compatible version numbers
CHROMIUM_DEB="chromium_${VERSION_NUMBER}_arm64.deb"
CHROMIUM_URL="${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/${PKG}/${VERSION_NUMBER}/${CHROMIUM_DEB}"
echo "Checking if cache has ${CHROMIUM_DEB}"
FILE_CHECK=$(curl --silent --location --head --output /dev/null --write "%{http_code}\\n" "$CHROMIUM_URL")
if [ "$FILE_CHECK" -eq "200" ]; then
echo "Latest version ${LATEST_VERSION} is already cached!"
else
echo "Downloading latest Chromium version (${LATEST_VERSION}) from apt repository..."
cd /tmp
apt-get download "$PKG"
DEB_FILE="chromium_${LATEST_VERSION}_arm64.deb"
if ! [ -f "$DEB_FILE" ]; then
echo "Downloaded file didn't have expected name: ${DEB_FILE}"
ls
exit 1
fi
mv "$DEB_FILE" "$CHROMIUM_DEB"
echo "Transferring ${CHROMIUM_DEB} to GitLab packages"
curl --fail --header "JOB-TOKEN: ${CI_JOB_TOKEN}" \
--upload-file "./{$CHROMIUM_DEB}" \
"$CHROMIUM_URL"
fi
}
echo "Updating system utils"
apt-get -y -qq update
apt-get -y install apt-utils curl gnupg2 > /dev/null
if [ "$TARGETARCH" == "amd64" ]; then
cache-chrome
else
cache-chromium
fi