Skip to content

Commit 2e62b6d

Browse files
committed
Skip check in cibuildwheel
1 parent 0c49062 commit 2e62b6d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/buildwheel.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@ jobs:
2929
# problematic in some situations. Maybe there is a better way to do
3030
# this.
3131
path-type: inherit
32-
if: ${{ matrix.os == 'windows-2022' }}
32+
if: ${{ startsWith( matrix.os , 'windows' ) }}
3333

3434
# Install pkgconfig on Windows from choco rather than from msys and
3535
# avoid using the Strawberry one.
3636
- run: choco install -y --stoponfirstfailure --checksum 6004DF17818F5A6DBF19CB335CC92702 pkgconfiglite
37-
if: ${{ matrix.os == 'windows-2022' }}
37+
if: ${{ startsWith( matrix.os , 'windows' ) }}
3838

3939
# We have to set this here rather than in the cibuildwheel config
4040
# This is probably something to do with \ vs / in paths...
4141
- run: echo "PKG_CONFIG_PATH=${{ github.workspace }}/.local/lib/pkgconfig" >> $env:GITHUB_ENV
42-
if: ${{ matrix.os == 'windows-2022' }}
42+
if: ${{ startsWith( matrix.os , 'windows' ) }}
4343

4444
- name: Build wheels
4545
uses: pypa/cibuildwheel@90a0ddeff0f23eebc21630e65d66d0f4955e9b94 # v3.0.0b1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ enable = ["cpython-freethreading", "pypy"]
8888
manylinux-x86_64-image = "manylinux2014"
8989
manylinux-aarch64-image = "manylinux_2_28"
9090
manylinux-i686-image = "manylinux2014"
91-
test-command = "python -c \"import flint; print(str(flint.fmpz(2)))\""
91+
# test-command = "python -c \"import flint; print(str(flint.fmpz(2)))\""
9292

9393
[tool.cibuildwheel.linux.environment]
9494
# LD_LIBRARY_PATH is needed by auditwheel

0 commit comments

Comments
 (0)