Skip to content

Commit

Permalink
fix(ci)
Browse files Browse the repository at this point in the history
  • Loading branch information
Badisi committed Jun 8, 2023
1 parent f3bcd67 commit a8622cc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci_tests.yml
Expand Up @@ -49,7 +49,9 @@ jobs:
run: |
$ChromeInstallerFile = "googlechromestandaloneenterprise64.msi"
$ChromeInstallerUrl = "https://dl.google.com/tag/s/dl/chrome/install/${ChromeInstallerFile}"
Install-Binary -Url $ChromeInstallerUrl -Name $ChromeInstallerFile -ArgumentList @()
$ChromeInstallerPath = Join-Path -Path "${env:Temp}" -ChildPath $ChromeInstallerFile
(New-Object System.Net.WebClient).DownloadFile($ChromeInstallerUrl, $ChromeInstallerPath)
Start-Process -FilePath msiexec.exe -ArgumentList "/i $ChromeInstallerPath /QN /norestart" -Wait -PassThru
- name: Install latest Chrome (Linux)
if: ${{ matrix.os == 'ubuntu-latest' }}
Expand All @@ -62,7 +64,7 @@ jobs:
- name: Install latest Chrome (macOS)
if: ${{ matrix.os == 'macos-latest' }}
run: |
wget -q -O - https://dl.google.com/chrome/mac/universal/stable/GGRO/googlechrome.dmg
wget -q https://dl.google.com/chrome/mac/universal/stable/GGRO/googlechrome.dmg
hdiutil attach -quiet -noautofsck -noautoopen googlechrome.dmg
sudo cp -r /Volumes/Google\ Chrome/Google\ Chrome.app /Applications/
Expand Down

0 comments on commit a8622cc

Please sign in to comment.