File tree 3 files changed +58
-2
lines changed
3 files changed +58
-2
lines changed Original file line number Diff line number Diff line change
1
+ # We could use `@actions-rs/cargo` Action ability to automatically install `cross` tool
2
+ # in order to compile our application for some unusual targets.
3
+
4
+ # Separated as another pipeline to avoid errors cancelling other targets until the cross issue is solved
5
+ # Ref: https://github.com/bltavares/multicast-socket/issues/18
6
+
7
+ on : [push, pull_request]
8
+
9
+ name : Cross-compile android
10
+
11
+ jobs :
12
+ build :
13
+ name : Build
14
+ runs-on : ubuntu-latest
15
+ strategy :
16
+ matrix :
17
+ target :
18
+ - aarch64-linux-android
19
+ steps :
20
+ - uses : actions/checkout@v2
21
+ - uses : actions-rs/toolchain@v1
22
+ with :
23
+ toolchain : 1.67
24
+ target : ${{ matrix.target }}
25
+ override : true
26
+ - uses : actions-rs/cargo@v1
27
+ with :
28
+ use-cross : true
29
+ command : build
30
+ args : --target=${{ matrix.target }} --examples
Original file line number Diff line number Diff line change 13
13
matrix :
14
14
target :
15
15
- armv7-unknown-linux-gnueabihf
16
- - aarch64-linux-android
17
- - mips-unknown-linux-musl
18
16
- x86_64-unknown-linux-musl
19
17
- aarch64-unknown-linux-gnu
20
18
steps :
Original file line number Diff line number Diff line change
1
+ # Since Rust 1.72+ MIPS is a Tier 3 platform, and there are many errors on the latest nightly to use -Z build-std.
2
+ # So we pin it to 1.71 to produce valid targets
3
+ # Ref: https://github.com/rust-lang/compiler-team/issues/648
4
+
5
+ on : [push, pull_request]
6
+
7
+ name : Cross-compile MIPS
8
+
9
+ jobs :
10
+ build :
11
+ name : Build
12
+ runs-on : ubuntu-latest
13
+ strategy :
14
+ matrix :
15
+ target :
16
+ - mips-unknown-linux-musl
17
+ steps :
18
+ - uses : actions/checkout@v2
19
+ - uses : actions-rs/toolchain@v1
20
+ with :
21
+ toolchain : 1.71
22
+ target : ${{ matrix.target }}
23
+ override : true
24
+ - uses : actions-rs/cargo@v1
25
+ with :
26
+ use-cross : true
27
+ command : build
28
+ args : --target=${{ matrix.target }} --examples
You can’t perform that action at this time.
0 commit comments