Skip to content

Commit 7a91d4e

Browse files
committed
Fixed issues caused by VS Code text editor.
1 parent 2f100b0 commit 7a91d4e

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.github/workflows/build_wheels.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -112,26 +112,26 @@ jobs:
112112
steps:
113113
- name: Checkout repository
114114
uses: actions/checkout@v4
115-
115+
116116
# Register QEMU for cross-architecture emulation
117117
- name: Set up QEMU for cross-compilation
118118
uses: docker/setup-qemu-action@v2
119119
with:
120120
platforms: all # Ensures ARM64 is fully supported
121-
121+
122122
- name: Debug - Test ManyLinux Container
123123
run: |
124124
echo "Testing uname -a inside the container..."
125-
docker run --rm --platform linux/aarch64 quay.io/pypa/manylinux_2_28_aarch64 un-a
125+
docker run --rm --platform linux/aarch64 quay.io/pypa/manylinux_2_28_aarch64 uname -a
126126
127127
echo "Testing Python inside the container..."
128-
docker run --rm --platform linux/aarch64 quay.io/pypa/manylinux_2_28_aarcpython3 --version
129-
128+
docker run --rm --platform linux/aarch64 quay.io/pypa/manylinux_2_28_aarch64 python3 --version
129+
130130
- name: Install cibuildwheel
131131
run: |
132132
python -m pip install --upgrade pip
133133
pip install cibuildwheel
134-
134+
135135
- name: Build wheels with cibuildwheel
136136
env:
137137
CIBW_PLATFORM: "linux"
@@ -142,10 +142,12 @@ jobs:
142142
CIBW_BUILD_VERBOSITY: 3
143143
run: |
144144
cibuildwheel --output-dir wheelhouse
145-
145+
146146
- name: upload wheels
147147
uses: actions/upload-artifact@v4
148148
with:
149149
name: wheels-linux-arm64-${{ matrix.python-version }}-${{ github.run_id }}
150150
path: wheelhouse/*.whl
151+
152+
151153

0 commit comments

Comments
 (0)