bruh bruh bruh bruh bruh bruh bruh
(im going insane)
This commit is contained in:
parent
aa7df5c4f2
commit
5a7e0b8ef7
29
.github/workflows/build.yaml
vendored
29
.github/workflows/build.yaml
vendored
@ -31,14 +31,27 @@ jobs:
|
|||||||
# step 2: build project
|
# step 2: build project
|
||||||
- name: build x86_64 bins
|
- name: build x86_64 bins
|
||||||
run: make all
|
run: make all
|
||||||
- name: build aarch64 bins
|
|
||||||
run: ARCH=aarch64 make all
|
- name: Upload x86_64 bins
|
||||||
- name: build armv7 bins
|
|
||||||
run: CC=arm-linux-gnueabihf-gcc ARCH=armv7 make all
|
|
||||||
|
|
||||||
# step 3: upload
|
|
||||||
- name: Upload build files
|
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: upload binaries
|
name: x86_64
|
||||||
|
path: build/
|
||||||
|
|
||||||
|
- name: build aarch64 bins
|
||||||
|
run: ARCH=aarch64 make all
|
||||||
|
|
||||||
|
- name: Upload aarch64 bins
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: aarch64
|
||||||
|
path: build/
|
||||||
|
|
||||||
|
- name: build armv7 bins
|
||||||
|
run: CC=arm-linux-gnueabihf-gcc ARCH=armv7 make all
|
||||||
|
|
||||||
|
- name: Upload armv7 bins
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: armv7
|
||||||
path: build/
|
path: build/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user