mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 03:27:05 +00:00
50 lines
1.7 KiB
Bash
50 lines
1.7 KiB
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: microsoft-edge.sh
|
|
## Desc: Installs Microsoft Edge
|
|
################################################################################
|
|
|
|
source $HELPER_SCRIPTS/install.sh
|
|
|
|
REPO_URL="https://packages.microsoft.com/repos/edge"
|
|
gpg_key="/usr/share/keyrings/microsoft-edge.gpg"
|
|
repo_path="/etc/apt/sources.list.d/microsoft-edge.list"
|
|
|
|
|
|
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > $gpg_key
|
|
# Specify an arch as Microsoft repository supports armhf and arm64 as well
|
|
echo "deb [arch=amd64 signed-by=$gpg_key] $REPO_URL stable main" > $repo_path
|
|
|
|
apt-get update
|
|
apt-get install --no-install-recommends microsoft-edge-stable
|
|
|
|
rm $gpg_key
|
|
rm $repo_path
|
|
|
|
echo "microsoft-edge $REPO_URL" >> $HELPER_SCRIPTS/apt-sources.txt
|
|
|
|
# Install Microsoft Edge Webdriver
|
|
|
|
EDGEDRIVER_DIR="/usr/local/share/edge_driver"
|
|
EDGEDRIVER_BIN="$EDGEDRIVER_DIR/msedgedriver"
|
|
|
|
mkdir -p $EDGEDRIVER_DIR
|
|
|
|
EDGE_VERSION=$(microsoft-edge --version | cut -d' ' -f 3)
|
|
EDGE_VERSION_MAJOR=$(echo $EDGE_VERSION | cut -d'.' -f 1)
|
|
|
|
EDGE_DRIVER_VERSION_URL="https://msedgedriver.azureedge.net/LATEST_RELEASE_${EDGE_VERSION_MAJOR}_LINUX"
|
|
# Convert a resulting file to normal UTF-8
|
|
EDGE_DRIVER_LATEST_VERSION=$(curl -fsSL "$EDGE_DRIVER_VERSION_URL" | iconv -f utf-16 -t utf-8 | tr -d '\r')
|
|
|
|
EDGEDRIVER_URL="https://msedgedriver.azureedge.net/${EDGE_DRIVER_LATEST_VERSION}/edgedriver_linux64.zip"
|
|
download_with_retries $EDGEDRIVER_URL "/tmp" "edgedriver_linux64.zip"
|
|
|
|
unzip -qq /tmp/edgedriver_linux64.zip -d $EDGEDRIVER_DIR
|
|
chmod +x $EDGEDRIVER_BIN
|
|
ln -s $EDGEDRIVER_BIN /usr/bin
|
|
|
|
echo "EDGEWEBDRIVER=$EDGEDRIVER_DIR" | tee -a /etc/environment
|
|
|
|
invoke_tests "Browsers" "Edge"
|