Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
howjmay committed Nov 9, 2023
1 parent 1082f52 commit 69866ae
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,15 @@ jobs:
make wasm
go get -v -t -d ./...
- name: Build
run: |
os=( "linux" "windows" "darwin" )
arch=( "amd64" "arm64" "386" )
for i in "${!os[@]}"; do
for j in "${!arch[@]}"; do
GOOS=${os[i]} GOARCH=${arch[j]} make build-cli
done
done
- name: macos arm64
run: GOOS=darwin GOARCH=arm64 make build-cli
- name: macos amd64
run: GOOS=darwin GOARCH=amd64 make build-cli
- name: linux arm64
run: GOOS=linux GOARCH=arm64 make build-cli
- name: linux amd64
run: GOOS=linux GOARCH=amd64 make build-cli
# - name: linux 386
# run: GOOS=linux GOARCH=386 make build-cli
- name: windows amd64
run: GOOS=windows GOARCH=amd64 make build-cli

0 comments on commit 69866ae

Please sign in to comment.