Skip to content

Commit

Permalink
Support ARM build (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
ngoduykhanh authored May 22, 2020
1 parent f82922c commit f76de28
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,17 @@ jobs:
strategy:
matrix:
# build and publish in parallel: linux/386, linux/amd64, darwin/386, darwin/amd64
goos: [linux, darwin]
goarch: ["386", amd64]
goos: [linux, freebsd, darwin]
goarch: [386, amd64, arm, arm64]
exclude:
- goarch: 386
goos: darwin
- goarch: arm
goos: darwin
- goarch: arm64
goos: darwin
goarm:
- 7
steps:
# get the source code
- uses: actions/checkout@v2
Expand Down

0 comments on commit f76de28

Please sign in to comment.