Upgrade TagLib 2.0.2, GoReleaser 2.2.0 (#3217)

* Upgrade ci-goreleaser

* Fix tests

* Fix taglib lib path in macOS
This commit is contained in:
Deluan Quintão 2024-08-28 19:13:08 -04:00 committed by GitHub
parent 6709ab3c5e
commit bc06a59919
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 11 additions and 9 deletions

View file

@ -13,7 +13,7 @@ jobs:
go-lint:
name: Lint Go code
runs-on: ubuntu-latest
container: deluan/ci-goreleaser:1.22.3-1
container: deluan/ci-goreleaser:1.23.0-1
steps:
- uses: actions/checkout@v4
@ -44,7 +44,7 @@ jobs:
go:
name: Test Go code
runs-on: ubuntu-latest
container: deluan/ci-goreleaser:1.22.3-1
container: deluan/ci-goreleaser:1.23.0-1
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
@ -104,7 +104,7 @@ jobs:
name: Build binaries
needs: [js, go, go-lint]
runs-on: ubuntu-latest
container: deluan/ci-goreleaser:1.22.3-1
container: deluan/ci-goreleaser:1.23.0-1
steps:
- name: Checkout Code
uses: actions/checkout@v4

View file

@ -1,5 +1,6 @@
# GoReleaser config
project_name: navidrome
version: 2
builds:
- id: navidrome_linux_amd64
@ -121,7 +122,7 @@ checksum:
name_template: "{{ .ProjectName }}_checksums.txt"
snapshot:
name_template: "{{ .Tag }}-SNAPSHOT"
version_template: "{{ .Tag }}-SNAPSHOT"
release:
draft: true

View file

@ -9,7 +9,7 @@ GIT_SHA=source_archive
GIT_TAG=$(patsubst navidrome-%,v%,$(notdir $(PWD)))
endif
CI_RELEASER_VERSION=1.22.3-1 ## https://github.com/navidrome/ci-goreleaser
CI_RELEASER_VERSION=1.23.0-1 ## https://github.com/navidrome/ci-goreleaser
UI_SRC_FILES := $(shell find ui -type f -not -path "ui/build/*" -not -path "ui/node_modules/*")

View file

@ -95,10 +95,10 @@ var _ = Describe("Extractor", func() {
m := mds[file]
Expect(m).To(HaveKeyWithValue("replaygain_album_gain", []string{albumGain}))
Expect(m).To(HaveKeyWithValue("replaygain_album_peak", []string{albumPeak}))
Expect(m).To(HaveKeyWithValue("replaygain_track_gain", []string{trackGain}))
Expect(m).To(HaveKeyWithValue("replaygain_track_peak", []string{trackPeak}))
Expect(m["replaygain_album_gain"]).To(ContainElement(albumGain))
Expect(m["replaygain_album_peak"]).To(ContainElement(albumPeak))
Expect(m["replaygain_track_gain"]).To(ContainElement(trackGain))
Expect(m["replaygain_track_peak"]).To(ContainElement(trackPeak))
Expect(m).To(HaveKeyWithValue("title", []string{"Title", "Title"}))
Expect(m).To(HaveKeyWithValue("album", []string{"Album", "Album"}))

View file

@ -4,6 +4,7 @@ package taglib
#cgo pkg-config: taglib
#cgo illumos LDFLAGS: -lstdc++ -lsendfile
#cgo linux darwin CXXFLAGS: -std=c++11
#cgo darwin LDFLAGS: -L/opt/homebrew/opt/taglib/lib
#include <stdio.h>
#include <stdlib.h>
#include <string.h>