From bf02a2ff77ef65f126e79da2e990f655226eebeb Mon Sep 17 00:00:00 2001 From: Adrian Duesselberg Date: Thu, 29 Aug 2024 16:33:22 +0200 Subject: [PATCH] Installing chrome in ROOT CI --- .github/workflows/root-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/root-ci.yml b/.github/workflows/root-ci.yml index 636efa1d18c260..c845ee742dcb40 100644 --- a/.github/workflows/root-ci.yml +++ b/.github/workflows/root-ci.yml @@ -121,6 +121,10 @@ jobs: with: ref: ${{ inputs.ref_name }} + - name: Install chrome + run: | + brew install --cask google-chrome + - name: Apply option overrides from matrix for this job for non-release builds if: ${{ github.event_name != 'schedule' && github.event_name != 'workflow_dispatch' && matrix.overrides != NaN }} env: @@ -410,6 +414,15 @@ jobs: uses: actions/checkout@v4 with: ref: ${{ inputs.ref_name }} + + - name: Install chrome + run: | + sudo apt-get update + sudo apt-get install -y wget gnupg + wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - + sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list' + sudo apt-get update + sudo apt-get install -y google-chrome-stable - name: Dump GitHub context env: