-
Notifications
You must be signed in to change notification settings - Fork 570
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.github/workflows/test_sysinstall.yml: new, test system build and ins…
…tall.
- Loading branch information
1 parent
ded3f85
commit 822d3f4
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |