mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
* feat(build): add a make target to build a msi installer locally
* Testing wrapping the executable in cmd
* build(ci): build msis in parallel
* feat(server): add LogFile config option
* Revert "Testing wrapping the executable in cmd"
This reverts commit be29592254
.
* Adding --log-file for service executable
* feat(ini): wip
* feat(ini): parse nested ini section
* fix(conf): fix fatal error messages
* Now navidrome supports INI, we can use the built-in msi ini system
and not require the VBScript to convert it into toml
* File needs to be called .ini to be parsed as an INI and correct filename
needs to be passed to the service
* fix(msi): build msi locally
* fix(msi): pipeline
* fix(msi): pipeline
* fix(msi): pipeline
* fix(msi): pipeline
* fix(msi): pipeline
* fix(msi): Makefile
* fix(msi): more clean up
* fix(log): convert LF to CRLF on Windows
* fix(msi): config filename should be case-insensitive
* fix(msi): make it a little more idiomatic
* Including the latest windows release of ffmpeg into the msi
as built by https://www.gyan.dev/ffmpeg/builds/ (linked
to on the official ffmpeg source)
* This should version independent
* Need bash expansion for the * to work
* This will run twice, once for x86 and once for x64, I'll make it cache
the executable for now as it'll be quicker
* Silencing wget
* Add ffmpeg path to the config so Navidrome knows where to find it
* refactor: download ffmpeg from our repository
* When going back from the "Are you ready to install?" it should go back to the
Settings dialogue that you just came from
* fix: comments
---------
Co-authored-by: Deluan <deluan@navidrome.org>
60 lines
1.9 KiB
Bash
Executable file
60 lines
1.9 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
FFMPEG_VERSION="7.1"
|
|
FFMPEG_REPOSITORY=navidrome/ffmpeg-windows-builds
|
|
DOWNLOAD_FOLDER=/tmp
|
|
|
|
#Exit if GIT_TAG is not set
|
|
if [ -z "$GIT_TAG" ]; then
|
|
echo "GIT_TAG is not set, exiting..."
|
|
exit 1
|
|
fi
|
|
|
|
set -e
|
|
|
|
WORKSPACE=$1
|
|
ARCH=$2
|
|
NAVIDROME_BUILD_VERSION=$(echo "$GIT_TAG" | sed -e 's/^v//' -e 's/-SNAPSHOT/.1/')
|
|
|
|
echo "Building MSI package for $ARCH, version $NAVIDROME_BUILD_VERSION"
|
|
|
|
MSI_OUTPUT_DIR=$WORKSPACE/binaries/msi
|
|
mkdir -p "$MSI_OUTPUT_DIR"
|
|
BINARY_DIR=$WORKSPACE/binaries/windows_${ARCH}
|
|
|
|
if [ "$ARCH" = "386" ]; then
|
|
PLATFORM="x86"
|
|
WIN_ARCH="win32"
|
|
else
|
|
PLATFORM="x64"
|
|
WIN_ARCH="win64"
|
|
fi
|
|
|
|
BINARY=$BINARY_DIR/navidrome.exe
|
|
if [ ! -f "$BINARY" ]; then
|
|
echo
|
|
echo "$BINARY not found!"
|
|
echo "Build it with 'make single GOOS=windows GOARCH=${ARCH}'"
|
|
exit 1
|
|
fi
|
|
|
|
# Download static compiled ffmpeg for Windows
|
|
FFMPEG_FILE="ffmpeg-n${FFMPEG_VERSION}-latest-${WIN_ARCH}-gpl-${FFMPEG_VERSION}"
|
|
wget --quiet --output-document="${DOWNLOAD_FOLDER}/ffmpeg.zip" \
|
|
"https://github.com/${FFMPEG_REPOSITORY}/releases/download/latest/${FFMPEG_FILE}.zip"
|
|
rm -rf "${DOWNLOAD_FOLDER}/extracted_ffmpeg"
|
|
unzip -d "${DOWNLOAD_FOLDER}/extracted_ffmpeg" "${DOWNLOAD_FOLDER}/ffmpeg.zip" "*/ffmpeg.exe"
|
|
cp "${DOWNLOAD_FOLDER}"/extracted_ffmpeg/${FFMPEG_FILE}/bin/ffmpeg.exe "$MSI_OUTPUT_DIR"
|
|
|
|
cp "$WORKSPACE"/LICENSE "$WORKSPACE"/README.md "$MSI_OUTPUT_DIR"
|
|
cp "$BINARY" "$MSI_OUTPUT_DIR"
|
|
|
|
# workaround for wixl WixVariable not working to override bmp locations
|
|
cp "$WORKSPACE"/release/wix/bmp/banner.bmp /usr/share/wixl-*/ext/ui/bitmaps/bannrbmp.bmp
|
|
cp "$WORKSPACE"/release/wix/bmp/dialogue.bmp /usr/share/wixl-*/ext/ui/bitmaps/dlgbmp.bmp
|
|
|
|
cd "$MSI_OUTPUT_DIR"
|
|
rm -f "$MSI_OUTPUT_DIR"/navidrome_"${ARCH}".msi
|
|
wixl "$WORKSPACE"/release/wix/navidrome.wxs -D Version="$NAVIDROME_BUILD_VERSION" -D Platform=$PLATFORM --arch $PLATFORM \
|
|
--ext ui --output "$MSI_OUTPUT_DIR"/navidrome_"${ARCH}".msi
|
|
|