File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change
1
+ set -e
2
+ wget $( curl -s https://googlechromelabs.github.io/chrome-for-testing/known-good-versions-with-downloads.json |
3
+ jq -r ' .versions.[-1].downloads.chrome.[] | select(.platform == "' " ${1} " ' ").url' )
4
+ unzip chrome*
5
+ export BROWSER_PATH=" $( realpath chrome-linux64) /chrome"
Original file line number Diff line number Diff line change 12
12
timeout-minutes : 4 # because sometimes it dies
13
13
# - uses: ./.github/actions/ # it would be nice but it doesn't support timeout-minutes
14
14
- name : Install Dependencies- Chrome
15
- run : wget $(curl -s https://googlechromelabs .github.io/chrome-for-testing/known-good-versions-with-downloads.json | jq -r '.versions.[-1].downloads.chrome.[] | select(.platform == "linux64").url') && unzip chrome* && export BROWSER_PATH="$(realpath chrome-linux64)/chrome "
15
+ run : chmod +x ./ .github/workflows/download_chrome.sh && ./.github/workflows/download_chrome.sh "linux64"
16
16
- name : Install choreographer
17
17
run : pip install .[dev]
18
18
- name : DTDoctor
You can’t perform that action at this time.
0 commit comments