Build ARM with armel instead of armhf. Fixes #525

This commit is contained in:
Deluan 2020-09-26 12:02:11 -04:00
parent 80b8b69cee
commit 4a4a8aff34
2 changed files with 3 additions and 3 deletions

View File

@ -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:

View File

@ -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