mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
build: generate binaries for Linux armv6, armv7 and arm68 (v8) (fixes #92)
This commit is contained in:
parent
9d1960232c
commit
e36a42f356
2 changed files with 49 additions and 15 deletions
|
@ -2,11 +2,58 @@
|
||||||
|
|
||||||
before:
|
before:
|
||||||
hooks:
|
hooks:
|
||||||
|
- apt-get update
|
||||||
|
- apt-get install -y gcc-arm-linux-gnueabi gcc-aarch64-linux-gnu
|
||||||
- go get -u github.com/go-bindata/go-bindata/...
|
- go get -u github.com/go-bindata/go-bindata/...
|
||||||
- go-bindata -fs -prefix ui/build -tags embed -nocompress -pkg assets -o assets/embedded_gen.go ui/build/...
|
- go-bindata -fs -prefix ui/build -tags embed -nocompress -pkg assets -o assets/embedded_gen.go ui/build/...
|
||||||
- git checkout .
|
- git checkout .
|
||||||
|
|
||||||
builds:
|
builds:
|
||||||
|
- id: navidrome_linux_amd64
|
||||||
|
env:
|
||||||
|
- CGO_ENABLED=1
|
||||||
|
goos:
|
||||||
|
- linux
|
||||||
|
goarch:
|
||||||
|
- amd64
|
||||||
|
flags:
|
||||||
|
- -tags=embed
|
||||||
|
ldflags:
|
||||||
|
- "-extldflags '-static'"
|
||||||
|
- -X github.com/deluan/navidrome/consts.gitSha={{.ShortCommit}} -X github.com/deluan/navidrome/consts.gitTag={{.Tag}}
|
||||||
|
|
||||||
|
- id: navidrome_linux_arm
|
||||||
|
env:
|
||||||
|
- CGO_ENABLED=1
|
||||||
|
- CC=arm-linux-gnueabi-gcc
|
||||||
|
goos:
|
||||||
|
- linux
|
||||||
|
goarch:
|
||||||
|
- arm
|
||||||
|
goarm:
|
||||||
|
- 6
|
||||||
|
- 7
|
||||||
|
flags:
|
||||||
|
- -tags=embed
|
||||||
|
ldflags:
|
||||||
|
- "-extldflags '-static'"
|
||||||
|
- "-extld=$CC"
|
||||||
|
- -X github.com/deluan/navidrome/consts.gitSha={{.ShortCommit}} -X github.com/deluan/navidrome/consts.gitTag={{.Tag}}
|
||||||
|
|
||||||
|
- id: navidrome_linux_arm64
|
||||||
|
env:
|
||||||
|
- CGO_ENABLED=1
|
||||||
|
- CC=aarch64-linux-gnu-gcc
|
||||||
|
goos:
|
||||||
|
- linux
|
||||||
|
goarch:
|
||||||
|
- arm64
|
||||||
|
flags:
|
||||||
|
- -tags=embed
|
||||||
|
ldflags:
|
||||||
|
- "-extldflags '-static'"
|
||||||
|
- -X github.com/deluan/navidrome/consts.gitSha={{.ShortCommit}} -X github.com/deluan/navidrome/consts.gitTag={{.Tag}}
|
||||||
|
|
||||||
- id: navidrome_darwin
|
- id: navidrome_darwin
|
||||||
env:
|
env:
|
||||||
- CGO_ENABLED=1
|
- CGO_ENABLED=1
|
||||||
|
@ -21,19 +68,6 @@ builds:
|
||||||
ldflags:
|
ldflags:
|
||||||
- -X github.com/deluan/navidrome/consts.gitSha={{.ShortCommit}} -X github.com/deluan/navidrome/consts.gitTag={{.Tag}}
|
- -X github.com/deluan/navidrome/consts.gitSha={{.ShortCommit}} -X github.com/deluan/navidrome/consts.gitTag={{.Tag}}
|
||||||
|
|
||||||
- id: navidrome_linux
|
|
||||||
env:
|
|
||||||
- CGO_ENABLED=1
|
|
||||||
goos:
|
|
||||||
- linux
|
|
||||||
goarch:
|
|
||||||
- amd64
|
|
||||||
flags:
|
|
||||||
- -tags=embed
|
|
||||||
ldflags:
|
|
||||||
- "-extldflags '-static'"
|
|
||||||
- -X github.com/deluan/navidrome/consts.gitSha={{.ShortCommit}} -X github.com/deluan/navidrome/consts.gitTag={{.Tag}}
|
|
||||||
|
|
||||||
- id: navidrome_windows_i686
|
- id: navidrome_windows_i686
|
||||||
env:
|
env:
|
||||||
- CGO_ENABLED=1
|
- CGO_ENABLED=1
|
||||||
|
|
|
@ -34,7 +34,6 @@ This project is being actively worked on. Expect a more polished experience and
|
||||||
on a frequent basis. Some upcoming features planned:
|
on a frequent basis. Some upcoming features planned:
|
||||||
|
|
||||||
- Last.FM integration
|
- Last.FM integration
|
||||||
- Pre-build binaries for Raspberry Pi
|
|
||||||
- Smart/dynamic playlists (similar to iTunes)
|
- Smart/dynamic playlists (similar to iTunes)
|
||||||
- Support for audiobooks (bookmarking)
|
- Support for audiobooks (bookmarking)
|
||||||
- Jukebox mode
|
- Jukebox mode
|
||||||
|
@ -49,7 +48,8 @@ Various options are available:
|
||||||
### Pre-built executables
|
### Pre-built executables
|
||||||
|
|
||||||
Just head to the [releases page](https://github.com/deluan/navidrome/releases) and download the latest version for you
|
Just head to the [releases page](https://github.com/deluan/navidrome/releases) and download the latest version for you
|
||||||
platform. There are builds available for Linux, macOS and Windows (32 and 64 bits).
|
platform. There are builds available for Linux (amd64 and arm), macOS and Windows (32 and 64 bits).
|
||||||
|
For Raspberry Pi (tested with Raspbian Buster on Pi 4), use the Linux arm builds.
|
||||||
|
|
||||||
Remember to install [ffmpeg](https://ffmpeg.org/download.html) in your system, a requirement for Navidrome to work properly.
|
Remember to install [ffmpeg](https://ffmpeg.org/download.html) in your system, a requirement for Navidrome to work properly.
|
||||||
You may find the latest static build for your platform here: https://johnvansickle.com/ffmpeg/
|
You may find the latest static build for your platform here: https://johnvansickle.com/ffmpeg/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue