From 5d571c3ec0bc1c85ed69b669d322eb8e98e5cf30 Mon Sep 17 00:00:00 2001 From: Tim Gross Date: Wed, 5 Jun 2024 13:49:04 -0400 Subject: [PATCH] build: remove 32-bit builds We no longer intend to release 32-bit builds for any platform for Nomad ecosystem projects. Ref: https://github.com/hashicorp/nomad/pull/23189 Ref: https://github.com/hashicorp/nomad-enterprise/issues/1053 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 27334b72..ff1ab0c5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,7 +59,7 @@ jobs: strategy: matrix: goos: [linux] - goarch: ["arm", "arm64", "amd64"] + goarch: ["arm64", "amd64"] fail-fast: false # recommended during development name: Go ${{ needs.get-go-version.outputs.go-version }} ${{ matrix.goos }} ${{ matrix.goarch }} build steps: