Skip to content

Commit ccf79ec

Browse files
committed
ci: Split wasm jobs between Python versions
There seems to be some kind of caching issue if both are run together.
1 parent 78a6000 commit ccf79ec

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/wasm.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,16 @@ jobs:
4949
with:
5050
python-version: '3.13'
5151

52-
- name: Build wheels for wasm
52+
- name: Build wheels for wasm 3.12
5353
uses: pypa/cibuildwheel@ee02a1537ce3071a004a6b08c41e72f0fdc42d9a # v3.4.0
5454
env:
55+
CIBW_BUILD: "cp312-*"
56+
CIBW_PLATFORM: "pyodide"
57+
58+
- name: Build wheels for wasm 3.13
59+
uses: pypa/cibuildwheel@ee02a1537ce3071a004a6b08c41e72f0fdc42d9a # v3.4.0
60+
env:
61+
CIBW_BUILD: "cp313-*"
5562
CIBW_PLATFORM: "pyodide"
5663

5764
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0

0 commit comments

Comments
 (0)