Skip to content

Commit

Permalink
.github/workflows/test_sysinstall.yml: new, test system build and ins…
Browse files Browse the repository at this point in the history
…tall.
  • Loading branch information
julian-smith-artifex-com committed Jan 4, 2024
1 parent ded3f85 commit 822d3f4
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test_sysinstall.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test sysinstall

on:
schedule:
- cron: '13 4 * * *'
workflow_dispatch:

jobs:

sysinstall:
name: Test sysinstall
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]

steps:

- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
# 3.12 doesn't have setuptools. As of 2024-01-03, MuPDF build requires setuptools before it
# sees `--venv` and defers to a venv, so we currently have to force use of python 3.11.
python-version: '3.11'

- name: sysinstall
run:
python scripts/sysinstall.py --mupdf-git '--branch master https://github.com/ArtifexSoftware/mupdf.git'

0 comments on commit 822d3f4

Please sign in to comment.