Skip to content

Commit 4623739

Browse files
committed
WIP
1 parent 67761ce commit 4623739

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/build.yml

+12
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,34 @@ jobs:
1111
- run: sudo apt-get install -y chrpath
1212
- run: rustup target list --installed
1313
- run: make download download-dependencies
14+
- run: rm -r vendor/linux-*
1415
- run: make all
16+
- uses: actions/upload-artifact@v4
17+
with:
18+
path: vendor/linux-*/
1519
build-on-darwin-x86_64:
1620
runs-on: macos-13
1721
steps:
1822
- uses: actions/checkout@v4
1923
- run: uname -m
2024
- run: rustup target add aarch64-apple-darwin
2125
- run: make download download-dependencies
26+
- run: rm -r vendor/darwin-*
2227
- run: make all ARCH=x86_64
2328
- run: make all ARCH=arm64
29+
- uses: actions/upload-artifact@v4
30+
with:
31+
path: vendor/darwin-*/
2432
build-on-darwin-arm64:
2533
runs-on: macos-14
2634
steps:
2735
- uses: actions/checkout@v4
2836
- run: uname -m
2937
- run: rustup target add x86_64-apple-darwin
3038
- run: make download download-dependencies
39+
- run: rm -r vendor/darwin-*
3140
- run: make all ARCH=arm64
3241
- run: make all test ARCH=x86_64
42+
- uses: actions/upload-artifact@v4
43+
with:
44+
path: vendor/darwin-*/

0 commit comments

Comments
 (0)