Skip to content

Commit 7bf0613

Browse files
committed
ci: support arm, armv7 and i686
1 parent 1d4d9db commit 7bf0613

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.github/workflows/ci.yml

+12
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,18 @@ jobs:
5959
# - { target: aarch64-pc-windows-msvc, os: windows-latest }
6060
- { target: aarch64-unknown-linux-gnu, os: ubuntu-latest }
6161
- { target: aarch64-unknown-linux-musl, os: ubuntu-latest }
62+
- { target: arm-unknown-linux-gnueabi, os: ubuntu-latest }
63+
- { target: arm-unknown-linux-gnueabihf, os: ubuntu-latest }
64+
- { target: arm-unknown-linux-musleabi, os: ubuntu-latest }
65+
- { target: arm-unknown-linux-musleabihf, os: ubuntu-latest }
66+
- { target: armv7-unknown-linux-gnueabi, os: ubuntu-latest }
67+
- { target: armv7-unknown-linux-gnueabihf, os: ubuntu-latest }
68+
- { target: armv7-unknown-linux-musleabi, os: ubuntu-latest }
69+
- { target: armv7-unknown-linux-musleabihf, os: ubuntu-latest }
70+
- { target: i686-pc-windows-gnu, os: ubuntu-latest }
71+
- { target: i686-pc-windows-msvc, os: windows-latest }
72+
- { target: i686-unknown-linux-gnu, os: ubuntu-latest }
73+
- { target: i686-unknown-linux-musl, os: ubuntu-latest }
6274
- { target: x86_64-apple-darwin, os: macos-latest }
6375
- { target: x86_64-pc-windows-gnu, os: ubuntu-latest }
6476
- { target: x86_64-pc-windows-msvc, os: windows-latest }

.github/workflows/release.yml

+12
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,18 @@ jobs:
2121
# - { target: aarch64-pc-windows-msvc, os: windows-latest }
2222
- { target: aarch64-unknown-linux-gnu, os: ubuntu-latest }
2323
- { target: aarch64-unknown-linux-musl, os: ubuntu-latest }
24+
- { target: arm-unknown-linux-gnueabi, os: ubuntu-latest }
25+
- { target: arm-unknown-linux-gnueabihf, os: ubuntu-latest }
26+
- { target: arm-unknown-linux-musleabi, os: ubuntu-latest }
27+
- { target: arm-unknown-linux-musleabihf, os: ubuntu-latest }
28+
- { target: armv7-unknown-linux-gnueabi, os: ubuntu-latest }
29+
- { target: armv7-unknown-linux-gnueabihf, os: ubuntu-latest }
30+
- { target: armv7-unknown-linux-musleabi, os: ubuntu-latest }
31+
- { target: armv7-unknown-linux-musleabihf, os: ubuntu-latest }
32+
- { target: i686-pc-windows-gnu, os: ubuntu-latest }
33+
- { target: i686-pc-windows-msvc, os: windows-latest }
34+
- { target: i686-unknown-linux-gnu, os: ubuntu-latest }
35+
- { target: i686-unknown-linux-musl, os: ubuntu-latest }
2436
- { target: x86_64-apple-darwin, os: macos-latest }
2537
- { target: x86_64-pc-windows-gnu, os: ubuntu-latest }
2638
- { target: x86_64-pc-windows-msvc, os: windows-latest }

0 commit comments

Comments
 (0)