From 6fe22aba395fa3ee7dde241014addf3d51c062d2 Mon Sep 17 00:00:00 2001 From: kolaente Date: Thu, 7 Nov 2024 14:41:08 +0100 Subject: [PATCH] fix!: disable 368 releases We can either support arm64 or 368 release binaries - because the arm64 binaries are probably wider used today, we'll prioritize that. It is still possible to compile Vikunja from source on a 368 system, but would take quite a bit of effort in providing pre-built binaries. Please reach out if you need assistance for 368 binaries. See https://github.com/techknowlogick/xgo/issues/256#issuecomment-2462135108 --- .drone.yml | 12 ++++++------ Dockerfile | 2 +- magefile.go | 14 +++++++++++++- 3 files changed, 20 insertions(+), 8 deletions(-) diff --git a/.drone.yml b/.drone.yml index 1072dcc6f..585ee7268 100644 --- a/.drone.yml +++ b/.drone.yml @@ -626,7 +626,7 @@ steps: depends_on: [ generate-config-yaml ] - name: before-static-build - image: techknowlogick/xgo:go-1.23.x + image: ghcr.io/techknowlogick/xgo:go-1.23.x pull: always commands: - export PATH=$PATH:$GOPATH/bin @@ -635,7 +635,7 @@ steps: depends_on: [ fetch-tags, mage ] - name: static-build-windows - image: techknowlogick/xgo:go-1.23.x + image: ghcr.io/techknowlogick/xgo:go-1.23.x pull: always environment: # This path does not exist. However, when we set the gopath to /go, the build fails. Not sure why. @@ -651,7 +651,7 @@ steps: - frontend-build - name: static-build-linux - image: techknowlogick/xgo:go-1.23.x + image: ghcr.io/techknowlogick/xgo:go-1.23.x pull: always environment: # This path does not exist. However, when we set the gopath to /go, the build fails. Not sure why. @@ -667,7 +667,7 @@ steps: - frontend-build - name: static-build-darwin - image: techknowlogick/xgo:go-1.23.x + image: ghcr.io/techknowlogick/xgo:go-1.23.x pull: always environment: # This path does not exist. However, when we set the gopath to /go, the build fails. Not sure why. @@ -693,7 +693,7 @@ steps: - ./mage-static release:compress - name: after-build-static - image: techknowlogick/xgo:go-1.23.x + image: ghcr.io/techknowlogick/xgo:go-1.23.x pull: always depends_on: - after-build-compress @@ -1400,6 +1400,6 @@ steps: - failure --- kind: signature -hmac: 14968b058e6d28fa78d2329672bb46b401822543171ca4bf524ec5f7ed7fa443 +hmac: e9c8b5dbbacec2777908d70408995135dfab758c01378c130f78ae21b9c2e644 ... diff --git a/Dockerfile b/Dockerfile index 9f143fc94..4ef7957d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN corepack enable && \ pnpm install && \ pnpm run build -FROM --platform=$BUILDPLATFORM techknowlogick/xgo:go-1.23.x AS apibuilder +FROM --platform=$BUILDPLATFORM ghcr.io/techknowlogick/xgo:go-1.23.x AS apibuilder RUN go install github.com/magefile/mage@latest && \ mv /go/bin/mage /usr/local/go/bin diff --git a/magefile.go b/magefile.go index 4f98cc462..2720ac439 100644 --- a/magefile.go +++ b/magefile.go @@ -559,7 +559,19 @@ func (Release) Windows() error { // Builds binaries for linux func (Release) Linux() error { - return runXgo("linux/*") + targets := []string{ + "linux/amd64", + "linux/arm-5", + "linux/arm-6", + "linux/arm-7", + "linux/arm64", + "linux/mips", + "linux/mipsle", + "linux/mips64", + "linux/mips64le", + "linux/riscv64", + } + return runXgo(strings.Join(targets, ",")) } // Builds binaries for darwin