Skip to content

Commit

Permalink
Add linux/arm64 build
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Litvinov <jnashicq@gmail.com>
  • Loading branch information
Zensey committed Nov 23, 2023
1 parent 2ac92b3 commit 2f1117e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,32 @@ on:
- '*.*.*'

jobs:
release-linux-armd64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19

- name: Install cross-compilation tools
run: |
set -ex
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu
- name: Build
run: |
go build -v -trimpath -ldflags "-s -w" -o bin/myst-launcher-cli.exe github.com/mysteriumnetwork/myst-launcher/cmd/app-cli
env:
GOARCH: arm64
GOOS: linux
CC: aarch64-linux-gnu-gcc
CGO_ENABLED: 1
CC_FOR_TARGET: gcc-aarch64-linux-gnu

release-windows-amd64:
runs-on: windows-2019
steps:
Expand Down

0 comments on commit 2f1117e

Please sign in to comment.