From 8f96d2470e31f7dc59dc2a8f0e352a2046804689 Mon Sep 17 00:00:00 2001 From: Meng Zhuo Date: Mon, 17 Jun 2024 19:34:06 +0800 Subject: [PATCH 1/3] add riscv64 release --- .goreleaser.yml | 7 +++++++ Dockerfile | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 98f8c206..085b2221 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -17,6 +17,7 @@ builds: - amd64 - arm - arm64 + - riscv64 goarm: - 6 ignore: @@ -24,8 +25,12 @@ builds: goarch: arm - goos: windows goarch: arm64 + - goos: windows + goarch: riscv64 - goos: darwin goarch: arm + - goos: darwin + goarch: riscv64 - goos: freebsd goarch: arm - goos: freebsd @@ -38,6 +43,8 @@ builds: goarch: arm - goos: plan9 goarch: arm64 + - goos: plan9 + goarch: riscv64 flags: - -trimpath diff --git a/Dockerfile b/Dockerfile index 83e50c57..1d2b7353 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN sed -i 's/^\(\s*\)\"127.0.0.1:6667\":.*$/\1":6667":/' /go/src/github.com/erg RUN make install ## build ergo container -FROM docker.io/alpine:3.19 +FROM docker.io/alpine:3.20 # metadata LABEL maintainer="Daniel Oaks ,Daniel Thamdrup " \ From e5e53146d153cb5a600c1f0fd6b107b6c797c832 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Thu, 20 Jun 2024 23:51:33 -0400 Subject: [PATCH 2/3] undo Alpine upgrade --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1d2b7353..83e50c57 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN sed -i 's/^\(\s*\)\"127.0.0.1:6667\":.*$/\1":6667":/' /go/src/github.com/erg RUN make install ## build ergo container -FROM docker.io/alpine:3.20 +FROM docker.io/alpine:3.19 # metadata LABEL maintainer="Daniel Oaks ,Daniel Thamdrup " \ From a1a757bd2e0f21ae8d7b7adc2fdf77d1a14791c4 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Thu, 20 Jun 2024 23:53:12 -0400 Subject: [PATCH 3/3] exclude *bsd/riscv64 releases --- .goreleaser.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.goreleaser.yml b/.goreleaser.yml index 085b2221..69aa0f8d 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -35,10 +35,14 @@ builds: goarch: arm - goos: freebsd goarch: arm64 + - goos: freebsd + goarch: riscv64 - goos: openbsd goarch: arm - goos: openbsd goarch: arm64 + - goos: openbsd + goarch: riscv64 - goos: plan9 goarch: arm - goos: plan9