File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 30
30
name : dist
31
31
path : ./wheelhouse/*.whl
32
32
33
+ build_wheels_aarch64 :
34
+ name : py${{ matrix.python-version }} on ${{ matrix.os }} (aarch64)
35
+ runs-on : ${{ matrix.os }}
36
+ strategy :
37
+ fail-fast : false
38
+ matrix :
39
+ os : [ubuntu-latest]
40
+ python-version : [38, 39, 310, 311]
41
+
42
+ steps :
43
+ - uses : actions/checkout@v3
44
+
45
+ - name : Setup up QEMU
46
+ uses : docker/setup-qemu-action@v2
47
+ with :
48
+ platforms : arm64
49
+
50
+ - name : Build wheels
51
+ uses : pypa/cibuildwheel@v2.11.3
52
+ env :
53
+ CIBW_BUILD : " cp${{ matrix.python-version}}-*"
54
+ CIBW_ARCHS : aarch64
55
+ CIBW_BUILD_VERBOSITY : 3
56
+ # https://github.com/rust-lang/cargo/issues/10583
57
+ CIBW_ENVIRONMENT_LINUX : PATH="$PATH:$HOME/.cargo/bin" CARGO_NET_GIT_FETCH_WITH_CLI=true
58
+ - uses : actions/upload-artifact@v3
59
+ with :
60
+ name : dist
61
+ path : ./wheelhouse/*.whl
62
+
33
63
build_sdist :
34
64
name : sdist
35
65
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments