File tree 1 file changed +12
-0
lines changed
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -11,22 +11,34 @@ jobs:
11
11
- run : sudo apt-get install -y chrpath
12
12
- run : rustup target list --installed
13
13
- run : make download download-dependencies
14
+ - run : rm -r vendor/linux-*
14
15
- run : make all
16
+ - uses : actions/upload-artifact@v4
17
+ with :
18
+ path : vendor/linux-*/
15
19
build-on-darwin-x86_64 :
16
20
runs-on : macos-13
17
21
steps :
18
22
- uses : actions/checkout@v4
19
23
- run : uname -m
20
24
- run : rustup target add aarch64-apple-darwin
21
25
- run : make download download-dependencies
26
+ - run : rm -r vendor/darwin-*
22
27
- run : make all ARCH=x86_64
23
28
- run : make all ARCH=arm64
29
+ - uses : actions/upload-artifact@v4
30
+ with :
31
+ path : vendor/darwin-*/
24
32
build-on-darwin-arm64 :
25
33
runs-on : macos-14
26
34
steps :
27
35
- uses : actions/checkout@v4
28
36
- run : uname -m
29
37
- run : rustup target add x86_64-apple-darwin
30
38
- run : make download download-dependencies
39
+ - run : rm -r vendor/darwin-*
31
40
- run : make all ARCH=arm64
32
41
- run : make all test ARCH=x86_64
42
+ - uses : actions/upload-artifact@v4
43
+ with :
44
+ path : vendor/darwin-*/
You can’t perform that action at this time.
0 commit comments