mirror of
https://github.com/kemko/nomad.git
synced 2026-01-06 18:35:44 +03:00
build: remove 32-bit ARM builds (#23189)
We no longer intend to release 32-bit builds for any platform. We'd previously removed the builds for i386 on both Linux and Windows, but never got around to removing the ARM builds. Add a note about this deprecation in the release notes for 1.8.x.
This commit is contained in:
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
@@ -132,7 +132,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
|
||||
@@ -170,16 +170,11 @@ jobs:
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y \
|
||||
binutils-aarch64-linux-gnu \
|
||||
binutils-arm-linux-gnueabihf \
|
||||
gcc-aarch64-linux-gnu \
|
||||
gcc-arm-linux-gnueabihf \
|
||||
gcc-multilib-arm-linux-gnueabihf
|
||||
gcc-aarch64-linux-gnu
|
||||
|
||||
- name: Set gcc
|
||||
run: |
|
||||
if [ "${{ matrix.goarch }}" == "arm" ]; then
|
||||
echo "CC=arm-linux-gnueabihf-gcc" >> "$GITHUB_ENV"
|
||||
elif [ "${{ matrix.goarch }}" == "arm64" ]; then
|
||||
if [ "${{ matrix.goarch }}" == "arm64" ]; then
|
||||
echo "CC=aarch64-linux-gnu-gcc" >> "$GITHUB_ENV"
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user