Skip to content

Commit

Permalink
build: remove 32-bit builds (#518)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
tgross authored Jun 5, 2024
1 parent 5818ae5 commit 09381ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
strategy:
matrix:
goos: ["linux"]
goarch: ["arm", "arm64", "amd64"]
goarch: ["arm64", "amd64"]
fail-fast: true

name: Go ${{ needs.get-go-version.outputs.go-version }} ${{ matrix.goos }} ${{ matrix.goarch }} build
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
strategy:
matrix:
goos: ["freebsd", "windows"]
goarch: ["amd64", "arm", "arm64"]
goarch: ["amd64", "arm64"]
exclude:
- goos: "windows"
goarch: "arm"
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
arch: ["arm", "arm64", "amd64"]
arch: ["arm64", "amd64"]
fail-fast: true
env:
version: ${{ needs.get-product-version.outputs.product-version }}
Expand Down

0 comments on commit 09381ad

Please sign in to comment.