@@ -42,20 +42,12 @@ jobs:
42
42
CIBW_PLATFORM : ' windows'
43
43
CIBW_ARCHS : ' ARM64'
44
44
CIBW_BEFORE_BUILD_WINDOWS : |
45
- python -m pip install delvewheel
46
- echo "Searching for cl.exe..."
47
- where cl.exe || echo "cl.exe not found in PATH"
48
- echo "Searching for link.exe..."
49
- where link.exe || echo "link.exe not found in PATH"
50
- echo "Searching for nmake.exe..."
51
- where nmake.exe || echo "nmake.exe not found in PATH"
52
- echo "Current PATH:"
53
- echo %PATH%
45
+ python -m pip install delvewheel wheel
54
46
bash scripts/cibw_before_build_windows.sh
55
- CIBW_ENVIRONMENT_WINDOWS : |
56
- CC=cl.exe
57
- CXX=cl.exe
58
- LD=link.exe
47
+ # CIBW_ENVIRONMENT_WINDOWS: |
48
+ # CC=cl.exe
49
+ # CXX=cl.exe
50
+ # LD=link.exe
59
51
60
52
# - name: Set up Python for validation
61
53
# uses: mamba-org/setup-micromamba@v2
69
61
70
62
- name : Validate wheel RECORD
71
63
shell : bash -el {0}
72
- run : |
73
- python -m pip install wheel
74
- for whl in $(ls wheelhouse); do wheel unpack wheelhouse/$whl -d /tmp; done
64
+ run : for whl in $(ls wheelhouse); do wheel unpack wheelhouse/$whl -d /tmp; done
75
65
76
- # Artifact upload is removed as per requirements
77
- # - uses: actions/upload-artifact@v4
78
- # with:
79
- # name: ${{ matrix.python[0] }}-${{ matrix.buildplat[1] }}
80
- # path: ./wheelhouse/*.whl
66
+ - uses : actions/upload-artifact@v4
67
+ with :
68
+ name : ${{ matrix.python[0] }}-${{ matrix.buildplat[1] }}
69
+ path : ./wheelhouse/*.whl
0 commit comments