-
Notifications
You must be signed in to change notification settings - Fork 735
39 lines (31 loc) · 886 Bytes
/
test_pyodide.yml
File metadata and controls
39 lines (31 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Build Pyodide wheel
# Builds pyodide wheels.
on:
workflow_dispatch:
schedule:
- cron: '13 5 * * *'
jobs:
pyodide:
name: pyodide
runs-on: ubuntu-latest
strategy:
matrix:
args: [
'',
'-m "git:--branch master https://github.com/ArtifexSoftware/mupdf"',
'-m "git:--branch 1.26.x https://github.com/ArtifexSoftware/mupdf"',
]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12
- name: pyodide
run:
python scripts/test.py ${{matrix.args}} pyodide
# We do not use upload-artifact@v4 because it fails due to us creating
# identically-named wheels.
#- uses: actions/upload-artifact@v4
# with:
# path: ./wheelhouse/*.whl