File tree Expand file tree Collapse file tree 1 file changed +12
-13
lines changed Expand file tree Collapse file tree 1 file changed +12
-13
lines changed Original file line number Diff line number Diff line change 26
26
python --version
27
27
python test.py
28
28
29
+ - name : Set up QEMU
30
+ if : runner.os == 'Linux'
31
+ uses : docker/setup-qemu-action@v2
32
+ with :
33
+ platforms : all
34
+
35
+ - name : Build wheels
36
+ uses : pypa/cibuildwheel@v2.6.1
37
+ env :
38
+ CIBW_BUILD : " cp39-*"
39
+ CIBW_ARCHS_LINUX : auto, aarch64
40
+
29
41
build_sdist :
30
42
name : Build source distribution
31
43
runs-on : ubuntu-latest
47
59
# alternatively, to publish when a GitHub Release is created, use the following rule:
48
60
# if: github.event_name == 'release' && github.event.action == 'published'
49
61
steps :
50
- - name : Set up QEMU
51
- if : runner.os == 'Linux'
52
- uses : docker/setup-qemu-action@v2
53
- with :
54
- platforms : all
55
-
56
- - name : Build wheels
57
- uses : pypa/cibuildwheel@v2.6.1
58
- env :
59
- CIBW_BUILD : " cp39-*"
60
- CIBW_ARCHS_LINUX : auto, aarch64
61
-
62
-
63
62
- uses : actions/upload-artifact@v2
64
63
with :
65
64
path : ./wheelhouse/*.whl
You can’t perform that action at this time.
0 commit comments