Skip to content

Commit

Permalink
docs: add support for linux arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
jhandguy committed Mar 4, 2024
1 parent 68dd167 commit 06b550e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ jobs:
goos: linux
goarch: amd64

- os: ubuntu-latest
goos: linux
goarch: arm64

- os: windows-latest
goos: windows
goarch: amd64
Expand All @@ -48,6 +52,10 @@ jobs:
go-version-file: go.mod
check-latest: true

- name: Setup QEMU
uses: docker/setup-qemu-action@v2
if: matrix.goos == 'linux' && matrix.goarch == 'arm64'

- name: Build
run: make build
env:
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ jobs:
goos: linux
goarch: amd64

- os: ubuntu-latest
goos: linux
goarch: arm64

- os: windows-latest
goos: windows
goarch: amd64
Expand All @@ -64,6 +68,10 @@ jobs:
go-version-file: go.mod
check-latest: true

- name: Setup QEMU
uses: docker/setup-qemu-action@v3
if: matrix.goos == 'linux' && matrix.goarch == 'arm64'

- name: Build
run: make build
env:
Expand Down

0 comments on commit 06b550e

Please sign in to comment.