File tree 1 file changed +14
-15
lines changed
1 file changed +14
-15
lines changed Original file line number Diff line number Diff line change 29
29
30
30
jobs :
31
31
build-xtasks :
32
- name : Build xtasks | ${{ matrix.host.arch }}
33
- runs-on : macos-m1-self-hosted
34
-
35
- strategy :
36
- fail-fast : false
37
- matrix :
38
- host :
39
- - arch : armv7
40
- rust-target : armv7-unknown-linux-gnueabihf
41
- - arch : aarch64
42
- rust-target : aarch64-unknown-linux-gnu
32
+ name : Build xtasks
33
+ runs-on : ubuntu-latest
43
34
44
35
steps :
45
36
- uses : actions/checkout@v4
@@ -60,13 +51,21 @@ jobs:
60
51
run : cargo install cross
61
52
62
53
- name : Build xtasks
63
- run : cross build --release --target ${{ matrix.host.rust-target }} -p xtask
54
+ run : |
55
+ cross build --release --target armv7-unknown-linux-gnueabihf -p xtask
56
+ cross build --release --target aarch64-unknown-linux-gnu -p xtask
57
+
58
+ - name : Upload artifact | armv7-unknown-linux-gnueabihf
59
+ uses : actions/upload-artifact@v4
60
+ with :
61
+ name : xtask-armv7
62
+ path : target/armv7-unknown-linux-gnueabihf/release/xtask
64
63
65
- - name : Upload artifact
64
+ - name : Upload artifact | aarch64-unknown-linux-gnu
66
65
uses : actions/upload-artifact@v4
67
66
with :
68
- name : xtask-${{ matrix.host.arch }}
69
- path : target/${{ matrix.host.rust-target }} /release/xtask
67
+ name : xtask-aarch64
68
+ path : target/aarch64-unknown-linux-gnu /release/xtask
70
69
71
70
build-tests :
72
71
name : Build HIL Tests | ${{ matrix.target.soc }}
You can’t perform that action at this time.
0 commit comments