From 11a9adb4b2af844ece75f5a48fc3d86b28682c33 Mon Sep 17 00:00:00 2001 From: Charlie Voiselle <464492+angrycub@users.noreply.github.com> Date: Mon, 10 Jun 2024 19:00:34 -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: hashicorp/nomad#23189 Ref: hashicorp/nomad-enterprise#1053 --- .github/workflows/build.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dfff8424d..61371c493 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -71,10 +71,6 @@ jobs: matrix: goos: ["linux", "darwin", "windows", "freebsd"] goarch: [ "amd64", "arm64"] - include: - - { goos: "linux", goarch: "386" } - - { goos: "linux", goarch: "arm" } - - { goos: "freebsd", goarch: "arm" } fail-fast: true name: Go ${{ needs.get-go-version.outputs.go-version }} ${{ matrix.goos }} ${{ matrix.goarch }} build steps: @@ -139,7 +135,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - arch: ["arm", "arm64", "386", "amd64"] + arch: ["arm64", "amd64"] fail-fast: true env: version: ${{ needs.get-product-version.outputs.product-version }}