Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/test-ff-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ on:
- ".github/workflows/stale-needs-repro.yml"
- ".github/workflows/test-bundle.yml"
- ".github/workflows/test-smokes-parallel.yml"
- ".github/workflows/test-install.yml"
- ".github/workflows/test-quarto-latexmk.yml"
- ".github/workflows/update-test-timing.yml"
pull_request:
Expand All @@ -31,6 +32,7 @@ on:
- ".github/workflows/performance-check.yml"
- ".github/workflows/stale-needs-repro.yml"
- ".github/workflows/test-bundle.yml"
- ".github/workflows/test-install.yml"
- ".github/workflows/test-smokes-parallel.yml"
- ".github/workflows/test-quarto-latexmk.yml"
- ".github/workflows/update-test-timing.yml"
Expand Down
53 changes: 53 additions & 0 deletions .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# Integration test for `quarto install` on platforms not covered by smoke tests.
# Smoke tests (test-smokes.yml) cover x86_64 Linux and Windows.
# This workflow fills the gap for arm64 Linux and macOS.
name: Test Tool Install
on:
workflow_dispatch:
push:
branches:
- main
- "v1.*"
paths:
- "src/tools/**"
- ".github/workflows/test-install.yml"
pull_request:
paths:
- "src/tools/**"
- ".github/workflows/test-install.yml"
schedule:
# Weekly Monday 9am UTC — detect upstream CDN/API breakage
- cron: "0 9 * * 1"

permissions:
contents: read

jobs:
test-install:
name: Install tools (${{ matrix.os }})
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04-arm, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repo
uses: actions/checkout@v6

- uses: ./.github/workflows/actions/quarto-dev

- name: Install TinyTeX
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
quarto install tinytex

- name: Install Chrome Headless Shell
# arm64 Linux support requires #14334. Remove this condition once merged.
if: runner.arch != 'ARM64'
run: |
quarto install chrome-headless-shell --no-prompt

- name: Verify tools with quarto check
run: |
quarto check install
1 change: 1 addition & 0 deletions .github/workflows/test-smokes-parallel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ on:
- ".github/workflows/stale-needs-repro.yml"
- ".github/workflows/test-bundle.yml"
- ".github/workflows/test-ff-matrix.yml"
- ".github/workflows/test-install.yml"
- ".github/workflows/test-quarto-latexmk.yml"
- ".github/workflows/update-test-timing.yml"
push:
Expand Down
Loading