Skip to content

Commit

Permalink
Merge branch '1.13' into 1
Browse files Browse the repository at this point in the history
  • Loading branch information
emteknetnz committed Aug 1, 2024
2 parents 2dec015 + 412234f commit 0ccfc9b
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -274,16 +274,14 @@ jobs:
# remove old symlink - note /usr/bin/google-chrome-stable is removed by apt remove above
sudo rm /usr/bin/chromedriver
# Get latest versions of chrome + chromedriver from json endpoint
curl https://googlechromelabs.github.io/chrome-for-testing/last-known-good-versions-with-downloads.json > chrome.json
# Get last known version of chrome + chromedriver that doesn't differ from actual user experience
# Install chrome
wget $(cat chrome.json | jq -r '.channels.Stable.downloads.chrome[] | select(.platform == "linux64").url')
wget https://storage.googleapis.com/chrome-for-testing-public/126.0.6478.182/linux64/chrome-linux64.zip
unzip chrome-linux64.zip
sudo ln -s $(pwd)/chrome-linux64/chrome /usr/bin/chrome
# Install chromedriver
wget $(cat chrome.json | jq -r '.channels.Stable.downloads.chromedriver[] | select(.platform == "linux64").url')
wget https://storage.googleapis.com/chrome-for-testing-public/126.0.6478.182/linux64/chromedriver-linux64.zip
unzip chromedriver-linux64.zip
sudo ln -s $(pwd)/chromedriver-linux64/chromedriver /usr/bin/chromedriver
Expand All @@ -295,7 +293,6 @@ jobs:
echo "Chromedriver version is: $(chromedriver --version)"
# Remove temporary files
rm chrome.json
rm chrome-linux64.zip
rm chromedriver-linux64.zip
fi
Expand Down Expand Up @@ -897,6 +894,7 @@ jobs:
endtoend: ${{ matrix.endtoend }}
endtoend_suite: ${{ matrix.endtoend_suite }}
endtoend_config: ${{ matrix.endtoend_config }}
endtoend_tags: ${{ matrix.endtoend_tags }}
js: ${{ matrix.js }}
doclinting: ${{ matrix.doclinting }}

Expand Down

0 comments on commit 0ccfc9b

Please sign in to comment.