From 37d7209e7abdb6c0fb5e1427bf138efbeb65dc08 Mon Sep 17 00:00:00 2001 From: Konstantin Dudkov <madrider@yandex-team.ru> Date: Tue, 7 Nov 2023 14:40:17 +0300 Subject: [PATCH] goreleaser --- .goreleaser.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 45389a3..964c148 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -16,10 +16,11 @@ builds: ldflags: - '-s -w -X main.gitRevision={{.Version}} -X main.gitCommit={{.Commit}}' goos: [ windows, linux, darwin ] - goarch: [ amd64, arm64 ] + goarch: [ amd64, arm64, arm ] + goarm: [ 6, 7 ] ignore: - goos: darwin - goarch: '386' + goarch: arm - id: ctl main: ./cmd/userctl binary: userctl @@ -31,10 +32,11 @@ builds: ldflags: - '-s -w -X main.gitRevision={{.Version}} -X main.gitCommit={{.Commit}}' goos: [ windows, linux, darwin ] - goarch: [ amd64, arm64 ] + goarch: [ amd64, arm64, arm ] + goarm: [ 6, 7 ] ignore: - goos: darwin - goarch: '386' + goarch: arm - id: takreplay main: ./cmd/takreplay binary: takreplay @@ -46,10 +48,11 @@ builds: ldflags: - '-s -w -X main.gitRevision={{.Version}} -X main.gitCommit={{.Commit}}' goos: [ windows, linux, darwin ] - goarch: [ amd64, arm64 ] + goarch: [ amd64, arm64, arm ] + goarm: [ 6, 7 ] ignore: - goos: darwin - goarch: '386' + goarch: arm - id: client main: ./cmd/webclient binary: goatak_client @@ -62,9 +65,6 @@ builds: - '-s -w -X main.gitRevision={{.Version}} -X main.gitCommit={{.Commit}}' goos: [ windows, linux, darwin ] goarch: [ amd64, arm64 ] - ignore: - - goos: darwin - goarch: '386' archives: - id: server builds: [ server, ctl, takreplay ]