mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Use new ci-releaser image, that contains static taglib
library
This commit is contained in:
parent
1216c9bdb8
commit
6a6d4c3f87
3 changed files with 12 additions and 6 deletions
4
.github/workflows/pipeline.yml
vendored
4
.github/workflows/pipeline.yml
vendored
|
@ -114,7 +114,7 @@ jobs:
|
||||||
|
|
||||||
- name: Run GoReleaser - SNAPSHOT
|
- name: Run GoReleaser - SNAPSHOT
|
||||||
if: startsWith(github.ref, 'refs/tags/') != true
|
if: startsWith(github.ref, 'refs/tags/') != true
|
||||||
uses: docker://deluan/ci-goreleaser:1.14.4-3
|
uses: docker://deluan/ci-goreleaser:1.14.7-1-taglib
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
|
@ -122,7 +122,7 @@ jobs:
|
||||||
|
|
||||||
- name: Run GoReleaser - RELEASE
|
- name: Run GoReleaser - RELEASE
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
uses: docker://deluan/ci-goreleaser:1.14.4-3
|
uses: docker://deluan/ci-goreleaser:1.14.7-1-taglib
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -12,6 +12,7 @@ builds:
|
||||||
- CGO_ENABLED=1
|
- CGO_ENABLED=1
|
||||||
- CC=o64-clang
|
- CC=o64-clang
|
||||||
- CXX=o64-clang++
|
- CXX=o64-clang++
|
||||||
|
- PKG_CONFIG_PATH=/darwin/lib/pkgconfig
|
||||||
goos:
|
goos:
|
||||||
- darwin
|
- darwin
|
||||||
goarch:
|
goarch:
|
||||||
|
@ -31,12 +32,13 @@ builds:
|
||||||
flags:
|
flags:
|
||||||
- -tags=embed
|
- -tags=embed
|
||||||
ldflags:
|
ldflags:
|
||||||
- "-extldflags '-static'"
|
- "-extldflags '-static -lz'"
|
||||||
- -s -w -X github.com/deluan/navidrome/consts.gitSha={{.ShortCommit}} -X github.com/deluan/navidrome/consts.gitTag={{.Version}}
|
- -s -w -X github.com/deluan/navidrome/consts.gitSha={{.ShortCommit}} -X github.com/deluan/navidrome/consts.gitTag={{.Version}}
|
||||||
|
|
||||||
- id: navidrome_linux_386
|
- id: navidrome_linux_386
|
||||||
env:
|
env:
|
||||||
- CGO_ENABLED=1
|
- CGO_ENABLED=1
|
||||||
|
# - PKG_CONFIG_PATH=/usr/lib/i386-linux-gnu/pkgconfig
|
||||||
goos:
|
goos:
|
||||||
- linux
|
- linux
|
||||||
goarch:
|
goarch:
|
||||||
|
@ -50,7 +52,8 @@ builds:
|
||||||
- id: navidrome_linux_arm
|
- id: navidrome_linux_arm
|
||||||
env:
|
env:
|
||||||
- CGO_ENABLED=1
|
- CGO_ENABLED=1
|
||||||
- CC=arm-linux-gnueabi-gcc-5
|
- CC=arm-linux-gnueabihf-gcc
|
||||||
|
- CXX=arm-linux-gnueabihf-g++
|
||||||
goos:
|
goos:
|
||||||
- linux
|
- linux
|
||||||
goarch:
|
goarch:
|
||||||
|
@ -68,7 +71,8 @@ builds:
|
||||||
- id: navidrome_linux_arm64
|
- id: navidrome_linux_arm64
|
||||||
env:
|
env:
|
||||||
- CGO_ENABLED=1
|
- CGO_ENABLED=1
|
||||||
- CC=aarch64-linux-gnu-gcc-5
|
- CC=aarch64-linux-gnu-gcc
|
||||||
|
- CXX=aarch64-linux-gnu-g++
|
||||||
goos:
|
goos:
|
||||||
- linux
|
- linux
|
||||||
goarch:
|
goarch:
|
||||||
|
@ -84,6 +88,7 @@ builds:
|
||||||
- CGO_ENABLED=1
|
- CGO_ENABLED=1
|
||||||
- CC=i686-w64-mingw32-gcc
|
- CC=i686-w64-mingw32-gcc
|
||||||
- CXX=i686-w64-mingw32-g++
|
- CXX=i686-w64-mingw32-g++
|
||||||
|
- PKG_CONFIG_PATH=/mingw32/lib/pkgconfig
|
||||||
goos:
|
goos:
|
||||||
- windows
|
- windows
|
||||||
goarch:
|
goarch:
|
||||||
|
@ -99,6 +104,7 @@ builds:
|
||||||
- CGO_ENABLED=1
|
- CGO_ENABLED=1
|
||||||
- CC=x86_64-w64-mingw32-gcc
|
- CC=x86_64-w64-mingw32-gcc
|
||||||
- CXX=x86_64-w64-mingw32-g++
|
- CXX=x86_64-w64-mingw32-g++
|
||||||
|
- PKG_CONFIG_PATH=/mingw64/lib/pkgconfig
|
||||||
goos:
|
goos:
|
||||||
- windows
|
- windows
|
||||||
goarch:
|
goarch:
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -96,5 +96,5 @@ release:
|
||||||
.PHONY: release
|
.PHONY: release
|
||||||
|
|
||||||
snapshot:
|
snapshot:
|
||||||
docker run -it -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.14.4-3 goreleaser release --rm-dist --skip-publish --snapshot
|
docker run -it -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.14.7-1-taglib goreleaser release --rm-dist --skip-publish --snapshot
|
||||||
.PHONY: snapshot
|
.PHONY: snapshot
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue