From 4b9ebf66d9d39203bc5daecb6f855ab06c4cd452 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=9E=E3=83=AA=E3=82=A6=E3=82=B9?= Date: Thu, 5 Jan 2023 15:39:52 -0500 Subject: [PATCH] Added .goreleaser.yaml --- .goreleaser.yaml | 82 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 .goreleaser.yaml diff --git a/.goreleaser.yaml b/.goreleaser.yaml new file mode 100644 index 0000000..6370305 --- /dev/null +++ b/.goreleaser.yaml @@ -0,0 +1,82 @@ +# .goreleaser.yaml +builds: + - + env: + - CGO_ENABLED=0 + goos: + - darwin + - linux + - netbsd + - openbsd + - freebsd + - plan9 + # - android + - windows + goarch: + - 386 + - amd64 + - arm + - arm64 + goarm: + - 6 + - 7 + ignore: + - goos: darwin + goarch: 386 + - goos: darwin + goarch: arm + - goos: darwin + goarch: ppc64 + - goos: darwin + goarch: ppc64le + - goos: darwin + goarch: riscv64 + + - goos: dragonfly + goarch: 386 + - goos: dragonfly + goarch: arm + - goos: dragonfly + goarch: arm64 + - goos: dragonfly + goarch: ppc64 + - goos: dragonfly + goarch: ppc64le + - goos: dragonfly + goarch: riscv64 + + - goos: freebsd + goarm: arm64 + - goos: freebsd + goarm: ppc64 + - goos: freebsd + goarm: ppc64le + - goos: freebsd + goarm: riscv64 + + - goos: netbsd + goarch: arm64 + - goos: netbsd + goarch: ppc64 + - goos: netbsd + goarch: ppc64le + - goos: netbsd + goarch: riscv64 + + - goos: plan9 + goarm: arm64 + - goos: plan9 + goarm: ppc64 + - goos: plan9 + goarm: ppc64le + - goos: plan9 + goarm: riscv64 + + - goos: windows + goarm: ppc64 + - goos: windows + goarm: ppc64le + - goos: windows + goarm: riscv64 + +