Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,8 @@ jobs:
include:
- arch: x64
- arch: win32
- arch: arm64
platform: windows-11-arm
steps:
- name: Get cached libyaml state
id: cached_libyaml
Expand Down Expand Up @@ -502,6 +504,24 @@ jobs:
- spec: cp313-win32
omit: ${{ env.skip_ci_redundant_jobs }}

- spec: cp39-win_arm64
runs-on: windows-11-arm

- spec: cp310-win_arm64
runs-on: windows-11-arm
omit: ${{ env.skip_ci_redundant_jobs }}

- spec: cp311-win_arm64
runs-on: windows-11-arm
omit: ${{ env.skip_ci_redundant_jobs }}

- spec: cp312-win_arm64
runs-on: windows-11-arm
omit: ${{ env.skip_ci_redundant_jobs }}

- spec: cp313-win_arm64
runs-on: windows-11-arm

windows_pyyaml:
needs: [python_sdist, windows_libyaml, make_windows_pyyaml_matrix]
name: pyyaml ${{matrix.spec}}
Expand All @@ -527,7 +547,7 @@ jobs:
uses: actions/cache/restore@v4
with:
path: libyaml
key: libyaml_${{'windows'}}_${{ contains(matrix.spec, 'win_amd64') && 'x64' || 'win32' }}_${{env.LIBYAML_REF}}
key: libyaml_${{'windows'}}_${{ contains(matrix.spec, 'win_amd64') && 'x64' || contains(matrix.spec, 'win_arm64') && 'arm64' || 'win32' }}_${{env.LIBYAML_REF}}
fail-on-cache-miss: true

- name: Install python
Expand Down