Skip to content

Commit 036f9a9

Browse files
.github/workflows/test_pyodide.yml: default to hard-coded mupdf, not master.
This will allow us to also build Pyodide wheels when we make a release.
1 parent a799bde commit 036f9a9

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/test_pyodide.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ name: Build Pyodide wheel
22

33
on:
44
workflow_dispatch:
5+
6+
inputs:
7+
PYMUPDF_SETUP_MUPDF_BUILD:
8+
description: 'Value for PYMUPDF_SETUP_MUPDF_BUILD, e.g.: git:--branch master https://github.com/ArtifexSoftware/mupdf.git'
9+
type: string
10+
511
schedule:
612
- cron: '13 5 * * *'
713

@@ -32,7 +38,7 @@ jobs:
3238
- name: build_pyodide_wheel
3339
env:
3440
inputs_sdist: 0
35-
inputs_PYMUPDF_SETUP_MUPDF_BUILD: "git:--recursive --depth 1 --shallow-submodules --branch master https://github.com/ArtifexSoftware/mupdf.git"
41+
inputs_PYMUPDF_SETUP_MUPDF_BUILD: ${{inputs.PYMUPDF_SETUP_MUPDF_BUILD}}
3642
inputs_wheels_default: 0
3743
inputs_wheels_linux_pyodide: 1
3844
inputs_wheels_implementations: b

0 commit comments

Comments
 (0)