Skip to content

Commit bb599c2

Browse files
committed
win
1 parent 4813d86 commit bb599c2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,13 @@ jobs:
3535
CIBW_MANYLINUX_X86_64_IMAGE: ghcr.io/chatziko/libqif/manylinux:v11
3636
CIBW_BEFORE_ALL_LINUX: bash .github/workflows/prepare-build-linux.sh
3737
CIBW_BEFORE_ALL_MACOS: bash .github/workflows/prepare-build-macos.sh
38-
CIBW_BEFORE_ALL_WINDOWS: bash .github/workflows/prepare-build-windows.sh
38+
CIBW_BEFORE_ALL_WINDOWS: >
39+
python - <<'PY'
40+
import os, sys
41+
print("CWD before:", os.getcwd())
42+
PY
43+
; python -m pip install --upgrade "pip>=24.0" "build>=1.0.0" "pyproject_hooks>=1.0.0"
44+
; bash .github/workflows/prepare-build-windows.sh
3945
4046
CIBW_REPAIR_WHEEL_COMMAND_LINUX: auditwheel repair -L /.libs -w {dest_dir} {wheel} # -L /.libs puts the libs under "qif/.libs"
4147
CIBW_REPAIR_WHEEL_COMMAND_MACOS: delocate-wheel -v -w {dest_dir} {wheel} # --require-archs x86_64 (this throws error for some reason)

0 commit comments

Comments
 (0)