File tree Expand file tree Collapse file tree 1 file changed +10
-16
lines changed Expand file tree Collapse file tree 1 file changed +10
-16
lines changed Original file line number Diff line number Diff line change @@ -26,25 +26,19 @@ jobs:
26
26
- name : Install rustc target
27
27
run : rustup target add aarch64-unknown-linux-gnu
28
28
29
- - uses : actions-rs/cargo@v1
30
- with :
31
- command : build
32
- args : --target aarch64-unknown-linux-gnu
33
- working-directory : simd
29
+ - name : Build arm64 simd
30
+ run : cargo build --target aarch64-unknown-linux-gnu
31
+ working-directory : simd
34
32
35
- - uses : actions-rs/cargo@v1
36
- with :
37
- command : build
38
- args : --target aarch64-unknown-linux-gnu
39
- working-directory : geometry
33
+ - name : Build arm64 geometry
34
+ run : cargo build --target aarch64-unknown-linux-gnu
35
+ working-directory : geometry
40
36
41
- - uses : actions-rs/cargo@v1
42
- with :
43
- command : build
37
+ - name : Build
38
+ run : cargo build
44
39
45
- - uses : actions-rs/cargo@v1
46
- with :
47
- command : test
40
+ - name : Test
41
+ run : cargo test
48
42
49
43
build_result :
50
44
name : homu build finished
You can’t perform that action at this time.
0 commit comments