Skip to content

Commit

Permalink
gha - Try the trick from quarto action to fix hanging on chrome in Unix
Browse files Browse the repository at this point in the history
  • Loading branch information
cderv committed May 16, 2024
1 parent 0cd0702 commit bb0dc98
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/test-ff-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,17 @@ jobs:
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3

# 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
# Same fix as in quarto-actions/quarto-render
# chromium is installed in the ubuntu 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 https://www.chromestatus.com
shell: bash

- name: Run all Smoke Tests Windows
if: ${{ runner.os == 'Windows' && format('{0}', inputs.buckets) == '' && matrix.time-test == false }}
env:
Expand Down

0 comments on commit bb0dc98

Please sign in to comment.