Skip to content

Commit

Permalink
Installing chrome in ROOT CI
Browse files Browse the repository at this point in the history
  • Loading branch information
DuesselbergAdrian committed Aug 29, 2024
1 parent 31a508a commit bf02a2f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/root-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit bf02a2f

Please sign in to comment.