File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 5
5
6
6
workflow_dispatch :
7
7
8
+ pull_request :
9
+
8
10
push :
9
11
branches :
10
12
- release
36
38
- os : ubuntu-18.04
37
39
target : aarch64-unknown-linux-gnu
38
40
code-target : linux-arm64
41
+ - os : ubuntu-18.04
42
+ target : arm-unknown-linux-gnueabihf
43
+ code-target : linux-armhf
39
44
- os : macos-11
40
45
target : x86_64-apple-darwin
41
46
code-target : darwin-x64
@@ -67,13 +72,17 @@ jobs:
67
72
node-version : 14.x
68
73
69
74
- name : Update apt repositories
70
- if : matrix.target == 'aarch64-unknown-linux-gnu'
75
+ if : matrix.target == 'aarch64-unknown-linux-gnu' || matrix.target == 'gcc-arm-linux-gnueabihf'
71
76
run : sudo apt-get update
72
77
73
- - name : Install target toolchain
78
+ - name : Install AArch64 target toolchain
74
79
if : matrix.target == 'aarch64-unknown-linux-gnu'
75
80
run : sudo apt-get install gcc-aarch64-linux-gnu
76
81
82
+ - name : Install ARM target toolchain
83
+ if : matrix.target == 'gcc-arm-linux-gnueabihf'
84
+ run : sudo apt-get install gcc-arm-linux-gnueabihf
85
+
77
86
- name : Dist
78
87
run : cargo xtask dist --client-patch-version ${{ github.run_number }}
79
88
You can’t perform that action at this time.
0 commit comments