File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,15 @@ jobs:
13
13
strategy :
14
14
matrix :
15
15
os : [ubuntu-latest]
16
+ target : [x86_64-unknown-linux-gnu, aarch64-unknown-linux-gnu]
16
17
runs-on : ${{ matrix.os }}
17
18
18
19
steps :
19
20
- name : Install latest rust toolchain
20
21
uses : actions-rs/toolchain@v1
21
22
with :
22
23
toolchain : " 1.78.0"
24
+ target : ${{ matrix.target }}
23
25
default : true
24
26
override : true
25
27
@@ -39,14 +41,15 @@ jobs:
39
41
strategy :
40
42
matrix :
41
43
os : [macos-latest]
44
+ target : [x86_64-apple-darwin, aarch64-apple-darwin]
42
45
runs-on : ${{ matrix.os }}
43
46
44
47
steps :
45
48
- name : Install latest rust toolchain
46
49
uses : actions-rs/toolchain@v1
47
50
with :
48
51
toolchain : " 1.78.0"
49
- target : x86_64-apple-darwin
52
+ target : ${{ matrix.target }}
50
53
default : true
51
54
override : true
52
55
You can’t perform that action at this time.
0 commit comments