Skip to content

Commit 87b35bb

Browse files
authored
Remove chrome checking (#116)
1 parent 92a1779 commit 87b35bb

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

render/action.yml

+11-6
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,21 @@ inputs:
1212
runs:
1313
using: 'composite'
1414
steps:
15+
# Chrome v128 started to create problem. Pin previous version in the meantime
16+
# - name: Install Chrome
17+
# uses: browser-actions/setup-chrome@v1
18+
# with:
19+
# chrome-version: 127
1520
# The Check Chromium step appears necessary to avoid a crash/hang when rendering PDFs
1621
# https://github.com/quarto-dev/quarto-actions/issues/45#issuecomment-1562599451
1722
#
1823
# chromium is installed in the ubuntu 21 runners in GHA, so no need to install it
19-
- name: 'Check Chromium'
20-
if: ${{ runner.os == 'Linux' }}
21-
run: |
22-
echo $(which chromium-browser)
23-
$(which chromium-browser) --headless --no-sandbox --disable-gpu --renderer-process-limit=1 https://www.chromestatus.com
24-
shell: bash
24+
#- name: 'Check Chromium'
25+
# if: ${{ runner.os == 'Linux' }}
26+
# run: |
27+
# echo $(which google-chrome)
28+
# $(which google-chrome) --headless --no-sandbox --disable-gpu --renderer-process-limit=1 https://www.chromestatus.com
29+
# shell: bash
2530
- name: 'Render'
2631
env:
2732
QUARTO_PRINT_STACK: true

0 commit comments

Comments
 (0)