From 88707383302abffe78f389622c156a2447db3c6a Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Mon, 17 Jun 2024 16:26:55 +0530 Subject: [PATCH] [server] Stop making 32 bit ARM images The code doesn't get tested or run and is likely not safe for 32 bits > 941.0 pkg/utils/billing/billing.go:117:13: cannot use ente.FreePlanStorage (untyped int constant 5368709120) as int value in struct literal (overflows) > > https://github.com/ente-io/ente/actions/runs/9546167833/job/26308448952 --- .github/workflows/server-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/server-publish.yml b/.github/workflows/server-publish.yml index b5aabbb8a2..1851cbcd03 100644 --- a/.github/workflows/server-publish.yml +++ b/.github/workflows/server-publish.yml @@ -33,7 +33,7 @@ jobs: registry: ghcr.io enableBuildKit: true multiPlatform: true - platform: linux/amd64,linux/arm64,linux/arm/v7 + platform: linux/amd64,linux/arm64 buildArgs: GIT_COMMIT=${{ inputs.commit }} tags: ${{ inputs.commit }}, latest username: ${{ github.actor }}