Skip to content

Commit

Permalink
Remove chrome checking (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
cderv authored Aug 30, 2024
1 parent 92a1779 commit 87b35bb
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions render/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,21 @@ inputs:
runs:
using: 'composite'
steps:
# Chrome v128 started to create problem. Pin previous version in the meantime
# - name: Install Chrome
# uses: browser-actions/setup-chrome@v1
# with:
# chrome-version: 127
# The Check Chromium step appears necessary to avoid a crash/hang when rendering PDFs
# https://github.com/quarto-dev/quarto-actions/issues/45#issuecomment-1562599451
#
# chromium is installed in the ubuntu 21 runners in GHA, so no need to install it
- name: 'Check Chromium'
if: ${{ runner.os == 'Linux' }}
run: |
echo $(which chromium-browser)
$(which chromium-browser) --headless --no-sandbox --disable-gpu --renderer-process-limit=1 https://www.chromestatus.com
shell: bash
#- name: 'Check Chromium'
# if: ${{ runner.os == 'Linux' }}
# run: |
# echo $(which google-chrome)
# $(which google-chrome) --headless --no-sandbox --disable-gpu --renderer-process-limit=1 https://www.chromestatus.com
# shell: bash
- name: 'Render'
env:
QUARTO_PRINT_STACK: true
Expand Down

0 comments on commit 87b35bb

Please sign in to comment.