Skip to content

Commit 016d8b6

Browse files
committed
Don't test tinytex on ARM yet
until quarto-dev/quarto-cli#12124 is dealt with
1 parent 02c9897 commit 016d8b6

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

.github/workflows/test.yaml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,16 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
version: [release, pre-release]
31+
version: ['release', 'pre-release']
3232
config:
33-
- { os: macos-latest }
34-
- { os: macos-13 }
35-
- { os: windows-latest }
36-
- { os: ubuntu-latest }
37-
- { os: ubuntu-22.04-arm }
38-
exclude:
39-
# Skip matrix versions when using workflow_dispatch
40-
- version: ${{ github.event_name == 'workflow_dispatch' && 'release' || '' }}
41-
- version: ${{ github.event_name == 'workflow_dispatch' && 'pre-release' || '' }}
33+
# Default config for standard platforms
34+
- os: macos-latest
35+
- os: macos-13
36+
- os: windows-latest
37+
- os: ubuntu-latest
38+
# Special config for ARM
39+
- os: ubuntu-22.04-arm
40+
tinytex: false
4241

4342
steps:
4443
- uses: actions/checkout@v4
@@ -48,7 +47,7 @@ jobs:
4847
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4948
with:
5049
version: ${{ inputs.version || matrix.version }}
51-
tinytex: ${{ inputs.tinytex || true }}
50+
tinytex: ${{ inputs.tinytex || (matrix.config.tinytex != null && matrix.config.tinytex || true) }}
5251

5352
- run: quarto --version
5453

0 commit comments

Comments
 (0)