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