Skip to content

Commit f363426

Browse files
committed
WIP
1 parent f6fb5ba commit f363426

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/build.yml

+15
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,37 @@ 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
1415
- run: make all
16+
- uses: actions/upload-artifact@v4
17+
with:
18+
name: on-linux
19+
path: vendor/
1520
build-on-darwin-x86_64:
1621
runs-on: macos-13
1722
steps:
1823
- uses: actions/checkout@v4
1924
- run: uname -m
2025
- run: rustup target add aarch64-apple-darwin
2126
- run: make download download-dependencies
27+
- run: rm -r vendor
2228
- run: make all ARCH=x86_64
2329
- run: make all ARCH=arm64
30+
- uses: actions/upload-artifact@v4
31+
with:
32+
name: on-darwin-x86_64
33+
path: vendor/
2434
build-on-darwin-arm64:
2535
runs-on: macos-14
2636
steps:
2737
- uses: actions/checkout@v4
2838
- run: uname -m
2939
- run: rustup target add x86_64-apple-darwin
3040
- run: make download download-dependencies
41+
- run: rm -r vendor
3142
- run: make all ARCH=arm64
3243
- run: make all test ARCH=x86_64
44+
- uses: actions/upload-artifact@v4
45+
with:
46+
name: on-darwin-arm64
47+
path: vendor/

0 commit comments

Comments
 (0)