We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de17145 commit c50d6f9Copy full SHA for c50d6f9
.github/workflows/build.yml
@@ -8,18 +8,16 @@ jobs:
8
fail-fast: false
9
steps:
10
- 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
17
- name: Compile Go with all.bash
18
19
cd src ; ./all.bash
20
- name: Run Go distribution tests under tamago/arm
21
22
- GO_BUILDER_NAME="tamago" GOOS=tamago GOARCH=arm ./bin/go tool dist test
+ GO_BUILDER_NAME=tamago GOOS=tamago GOARCH=arm ./bin/go tool dist test
23
- name: Run Go distribution tests under tamago/riscv64
24
25
- GO_BUILDER_NAME="tamago" GOOS=tamago GOARCH=riscv64 ./bin/go tool dist test
+ GO_BUILDER_NAME=tamago GOOS=tamago GOARCH=riscv64 ./bin/go tool dist test
0 commit comments