From 4a4a8aff349b897e54e7d560c196bc45e0cbf49f Mon Sep 17 00:00:00 2001 From: Deluan Date: Sat, 26 Sep 2020 12:02:11 -0400 Subject: [PATCH] Build ARM with armel instead of armhf. Fixes #525 --- .goreleaser.yml | 4 ++-- Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index ad725cb19..4f6ff3204 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -36,8 +36,8 @@ builds: - id: navidrome_linux_arm env: - CGO_ENABLED=1 - - CC=arm-linux-gnueabihf-gcc - - CXX=arm-linux-gnueabihf-g++ + - CC=arm-linux-gnueabi-gcc + - CXX=arm-linux-gnueabi-g++ goos: - linux goarch: diff --git a/Makefile b/Makefile index 474d16538..799f9fcf7 100644 --- a/Makefile +++ b/Makefile @@ -103,5 +103,5 @@ release: .PHONY: release snapshot: - docker run -it -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.14.9-3 goreleaser release --rm-dist --skip-publish --snapshot + docker run -it -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.14.9-4 goreleaser release --rm-dist --skip-publish --snapshot .PHONY: snapshot