File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 22
22
- run : cargo check
23
23
- run : cargo test
24
24
- run : cd extras/data-tests && cargo run --release
25
+
26
+ cross :
27
+ name : Rust ${{matrix.target}}
28
+ runs-on : ubuntu-latest
29
+ strategy :
30
+ fail-fast : false
31
+ matrix :
32
+ target :
33
+ - powerpc-unknown-linux-gnu
34
+ - powerpc64le-unknown-linux-gnu
35
+ - aarch64-unknown-linux-gnu
36
+ - armv7-unknown-linux-gnueabihf
37
+ steps :
38
+ - uses : actions/checkout@v2
39
+ - uses : actions-rs/toolchain@v1
40
+ with :
41
+ toolchain : stable
42
+ target : ${{matrix.target}}
43
+ override : true
44
+ - uses : actions-rs/cargo@v1
45
+ with :
46
+ use-cross : true
47
+ command : check
48
+ args : --target ${{matrix.target}}
49
+ - uses : actions-rs/cargo@v1
50
+ with :
51
+ use-cross : true
52
+ command : test
53
+ args : --target ${{matrix.target}}
You can’t perform that action at this time.
0 commit comments