Skip to content

Instantly share code, notes, and snippets.

@FeodorFitsner
Last active February 9, 2023 19:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FeodorFitsner/32a89ee82a9f67bf73a532c4ed1ea927 to your computer and use it in GitHub Desktop.
Save FeodorFitsner/32a89ee82a9f67bf73a532c4ed1ea927 to your computer and use it in GitHub Desktop.
Install Google Chrome 107.0 on Ubuntu 16.04
# https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable
# https://unix.stackexchange.com/questions/233185/install-older-versions-of-google-chrome-stable-on-ubuntu-14-10
image: ubuntu1604
install:
- sh: |
CHROME_VERSION=107.0.5304.87-1
wget --no-verbose -O /tmp/chrome.deb https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb \
&& sudo apt install -y /tmp/chrome.deb \
&& rm /tmp/chrome.deb
build: off
test: off
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment