From 6d732090e94062ade88b26c1c75cfb21590b071b Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sat, 12 Mar 2022 01:42:17 -0700 Subject: [PATCH] workaround(build): goreleaser cannot cross-compile due to syscalls --- .goreleaser.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 227f7e7..cb3bc6e 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -10,14 +10,14 @@ builds: env: - CGO_ENABLED=1 goos: - - linux - - windows - darwin + #- linux + #- windows goarch: - - 386 - amd64 - - arm - arm64 + - 386 + - arm goarm: - 6 - 7