File tree 1 file changed +17
-0
lines changed
1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -137,6 +137,23 @@ jobs:
137
137
publish_branch : gh-pages
138
138
publish_dir : ./www
139
139
140
+ - name : Install AArch64 Toolchain
141
+ if : ${{ matrix.target == 'aarch64-unknown-linux-musl' }}
142
+ run : |
143
+ sudo apt-get update
144
+ sudo apt-get install gcc-aarch64-linux-gnu libc6-dev-i386
145
+
146
+ - name : Install ARM Toolchain
147
+ if : ${{ matrix.target == 'arm-unknown-linux-musleabihf' || matrix.target == 'armv7-unknown-linux-musleabihf' }}
148
+ run : |
149
+ sudo apt-get update
150
+ sudo apt-get install gcc-arm-linux-gnueabihf
151
+
152
+ - name : Install AArch64 Toolchain (Windows)
153
+ if : ${{ matrix.target == 'aarch64-pc-windows-msvc' }}
154
+ run : |
155
+ rustup target add aarch64-pc-windows-msvc
156
+
140
157
- name : Package
141
158
id : package
142
159
if : startsWith(github.ref, 'refs/tags/')
You can’t perform that action at this time.
0 commit comments