Skip to content

Commit

Permalink
Don't test tinytex on ARM yet
Browse files Browse the repository at this point in the history
until quarto-dev/quarto-cli#12124 is dealt with
  • Loading branch information
cderv committed Feb 19, 2025
1 parent 02c9897 commit 016d8b6
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,16 @@ jobs:
strategy:
fail-fast: false
matrix:
version: [release, pre-release]
version: ['release', 'pre-release']
config:
- { os: macos-latest }
- { os: macos-13 }
- { os: windows-latest }
- { os: ubuntu-latest }
- { os: ubuntu-22.04-arm }
exclude:
# Skip matrix versions when using workflow_dispatch
- version: ${{ github.event_name == 'workflow_dispatch' && 'release' || '' }}
- version: ${{ github.event_name == 'workflow_dispatch' && 'pre-release' || '' }}
# Default config for standard platforms
- os: macos-latest
- os: macos-13
- os: windows-latest
- os: ubuntu-latest
# Special config for ARM
- os: ubuntu-22.04-arm
tinytex: false

steps:
- uses: actions/checkout@v4
Expand All @@ -48,7 +47,7 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
version: ${{ inputs.version || matrix.version }}
tinytex: ${{ inputs.tinytex || true }}
tinytex: ${{ inputs.tinytex || (matrix.config.tinytex != null && matrix.config.tinytex || true) }}

- run: quarto --version

Expand Down

0 comments on commit 016d8b6

Please sign in to comment.