Skip to content

Commit f4f585e

Browse files
committed
github actions: add binfmt-support package
1 parent c51615d commit f4f585e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/build.yml

+8
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,20 @@ jobs:
88
fail-fast: false
99
steps:
1010
- uses: actions/checkout@v4.1.7
11+
12+
- name: Prerequisites
13+
run: |
14+
sudo apt-get update
15+
sudo apt-get install -y binfmt-support qemu-user-static
16+
1117
- name: Compile Go with make.bash
1218
run: |
1319
cd src ; ./make.bash
20+
1421
- name: Compile Go with all.bash
1522
run: |
1623
cd src ; ./clean.bash ; ./all.bash
24+
1725
- name: Run Go distribution tests under GOOS=tamago
1826
run: |
1927
GO_BUILDER_NAME="tamago" GOOS=tamago GOARCH=arm ./bin/go tool dist test

0 commit comments

Comments
 (0)