Skip to content

Commit c267e77

Browse files
committed
test minimal changes
1 parent af4a071 commit c267e77

File tree

1 file changed

+10
-21
lines changed

1 file changed

+10
-21
lines changed

.github/workflows/wheels.yml

Lines changed: 10 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,12 @@ jobs:
4242
CIBW_PLATFORM: 'windows'
4343
CIBW_ARCHS: 'ARM64'
4444
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
5446
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
5951

6052
# - name: Set up Python for validation
6153
# uses: mamba-org/setup-micromamba@v2
@@ -69,12 +61,9 @@ jobs:
6961

7062
- name: Validate wheel RECORD
7163
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
7565

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

Comments
 (0)