mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
Build binary for Linux MUSL (ex: Alpine). Fix #142
This commit is contained in:
parent
5ed1d5c19f
commit
2dfe01963a
1 changed files with 30 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
||||||
before:
|
before:
|
||||||
hooks:
|
hooks:
|
||||||
- apt-get update
|
- apt-get update
|
||||||
- apt-get install -y gcc-arm-linux-gnueabi gcc-aarch64-linux-gnu
|
- apt-get install -y gcc-arm-linux-gnueabi gcc-aarch64-linux-gnu musl-tools
|
||||||
- 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 .
|
||||||
|
@ -36,6 +36,20 @@ builds:
|
||||||
- "-extldflags '-static'"
|
- "-extldflags '-static'"
|
||||||
- -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_musl_amd64
|
||||||
|
env:
|
||||||
|
- CGO_ENABLED=1
|
||||||
|
- CC=musl-gcc
|
||||||
|
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
|
- id: navidrome_linux_arm
|
||||||
env:
|
env:
|
||||||
- CGO_ENABLED=1
|
- CGO_ENABLED=1
|
||||||
|
@ -99,7 +113,21 @@ builds:
|
||||||
- -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}}
|
||||||
|
|
||||||
archives:
|
archives:
|
||||||
-
|
- id: musl
|
||||||
|
builds:
|
||||||
|
- navidrome_linux_musl_amd64
|
||||||
|
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_musl_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
|
||||||
|
replacements:
|
||||||
|
linux: Linux
|
||||||
|
amd64: x86_64
|
||||||
|
- id: default
|
||||||
|
builds:
|
||||||
|
- navidrome_darwin
|
||||||
|
- navidrome_linux_amd64
|
||||||
|
- navidrome_linux_arm
|
||||||
|
- navidrome_linux_arm64
|
||||||
|
- navidrome_windows_i686
|
||||||
|
- navidrome_windows_x64
|
||||||
format_overrides:
|
format_overrides:
|
||||||
- goos: windows
|
- goos: windows
|
||||||
format: zip
|
format: zip
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue