Skip to content

Commit 26bacbd

Browse files
committed
Update wheels workflow to exclude windows
1 parent 50e10a5 commit 26bacbd

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/ci-wheels.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ jobs:
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
15-
os: [ubuntu-latest, windows-latest, macos-latest]
15+
# On Windows, some ASN1c code seems to be broken, which will be resolved
16+
# in a future release
17+
os: [ubuntu-latest, macos-latest] # windows-latest
1618

1719
steps:
1820
- uses: actions/checkout@v4
@@ -27,6 +29,7 @@ jobs:
2729
env:
2830
# cibuildwheel will build wheel once and test it for each CPython version
2931
CIBW_BUILD: "cp312-* cp313-* cp311-* cp310-*"
32+
CIBW_SKIP: "*musllinux*"
3033
CIBW_BUILD_VERBOSITY: 1
3134

3235
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)