It can be done within the container, rather than having to compute it in the Makefile and then pass it as an argument.
44 lines
1.8 KiB
Bash
Executable File
44 lines
1.8 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o pipefail -xeu
|
|
|
|
dpkgArch="$(dpkg --print-architecture)"
|
|
|
|
if [ "${USE_CHROMIUM}" = 1 -o "${dpkgArch##*-}" = "arm64" ]; then
|
|
echo "Using Debian's Chromium"
|
|
apt-dpkg-wrap apt-get install -y chromium chromium-driver chromium-sandbox
|
|
chromium --version
|
|
else
|
|
if [ "${CHROME_RELEASE}" = "latest" ]; then
|
|
wget -qO - https://dl-ssl.google.com/linux/linux_signing_key.pub | gpg --dearmour > /etc/apt/trusted.gpg.d/google.gpg
|
|
echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list
|
|
apt-dpkg-wrap apt-get update
|
|
apt-dpkg-wrap apt-get install -y google-chrome-stable
|
|
else
|
|
CHROME_DEB="/tmp/google-chrome-stable_${CHROME_RELEASE}-1_amd64.deb"
|
|
curl -4so ${CHROME_DEB} "http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_RELEASE}-1_amd64.deb"
|
|
apt-dpkg-wrap apt-get install -y ${CHROME_DEB}
|
|
rm -f ${CHROME_DEB}
|
|
fi
|
|
|
|
google-chrome --version
|
|
|
|
BASE_URL=https://googlechromelabs.github.io/chrome-for-testing
|
|
|
|
if [ "${CHROME_RELEASE}" = "latest" ]; then
|
|
CHROMEDRIVER_RELEASE="$(curl -4Ls ${BASE_URL}/LATEST_RELEASE_STABLE)"
|
|
else
|
|
CHROMEDRIVER_MAJOR_RELEASE=$(echo $CHROME_RELEASE | cut -d. -f1)
|
|
CHROMEDRIVER_RELEASE="$(curl -4Ls ${BASE_URL}/LATEST_RELEASE_${CHROMEDRIVER_MAJOR_RELEASE})"
|
|
fi
|
|
|
|
CHROMEDRIVER_ZIP="/tmp/chromedriver_linux64.zip"
|
|
curl -4Lso ${CHROMEDRIVER_ZIP} "https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/${CHROMEDRIVER_RELEASE}/linux64/chromedriver-linux64.zip"
|
|
unzip ${CHROMEDRIVER_ZIP} -d /tmp/
|
|
mv /tmp/chromedriver-linux64/chromedriver /usr/bin/
|
|
chmod +x /usr/bin/chromedriver
|
|
rm -rf /tmp/chromedriver*
|
|
fi
|
|
|
|
chromedriver --version
|