File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -112,26 +112,26 @@ jobs:
112
112
steps :
113
113
- name : Checkout repository
114
114
uses : actions/checkout@v4
115
-
115
+
116
116
# Register QEMU for cross-architecture emulation
117
117
- name : Set up QEMU for cross-compilation
118
118
uses : docker/setup-qemu-action@v2
119
119
with :
120
120
platforms : all # Ensures ARM64 is fully supported
121
-
121
+
122
122
- name : Debug - Test ManyLinux Container
123
123
run : |
124
124
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
126
126
127
127
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
+
130
130
- name : Install cibuildwheel
131
131
run : |
132
132
python -m pip install --upgrade pip
133
133
pip install cibuildwheel
134
-
134
+
135
135
- name : Build wheels with cibuildwheel
136
136
env :
137
137
CIBW_PLATFORM : " linux"
@@ -142,10 +142,12 @@ jobs:
142
142
CIBW_BUILD_VERBOSITY : 3
143
143
run : |
144
144
cibuildwheel --output-dir wheelhouse
145
-
145
+
146
146
- name : upload wheels
147
147
uses : actions/upload-artifact@v4
148
148
with :
149
149
name : wheels-linux-arm64-${{ matrix.python-version }}-${{ github.run_id }}
150
150
path : wheelhouse/*.whl
151
+
152
+
151
153
You can’t perform that action at this time.
0 commit comments