File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ enable = ["cpython-freethreading", "pypy"]
8888manylinux-x86_64-image = " manylinux2014"
8989manylinux-aarch64-image = " manylinux_2_28"
9090manylinux-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
You can’t perform that action at this time.
0 commit comments