mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
a884b1f786
* Fix fedora * Fix RID Linux * Fix package and image versions * Fix buildling and optimize docker images ``` * Removed find obj * Changed curl command and added gpg * Added to Contributors * Removed apt-transport-https package * Removed RASPI * Update Intel drivers version * Update Dockerfile for CentOS, Fedora, and portable deployments - Changed Jammy docker image to Built-in Jammy Microsoft .NET SDK image - Switched from using "Yum" to "Dnf" for CentOS and Fedora - Added "dnf clean all" and "rm -rf /var/cache/dnf" to the end of CentOS and Fedora Dockerfiles - Added "apt-get clean", "apt-get autoremove", "rm -rf /var/lib/apt/lists/*" to the end of the Debian/Ubuntu Dockerfiles - Added ${DOTNET_VERSION} in every Dockerfile except CentOS/Fedora - Removed previous warning comment for dotnet publish build in parallel - Arranged package installation * Re-arranged Dockerfile package installation * Re-align * Remove curl * Remove curl
53 lines
1.6 KiB
Bash
Executable File
53 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
#= Windows 7+ amd64 (x64) .zip
|
|
|
|
set -o errexit
|
|
set -o xtrace
|
|
|
|
# Version variables
|
|
NSSM_VERSION="nssm-2.24-101-g897c7ad"
|
|
NSSM_URL="http://files.evilt.win/nssm/${NSSM_VERSION}.zip"
|
|
FFMPEG_URL="https://repo.jellyfin.org/releases/server/windows/ffmpeg/jellyfin-ffmpeg-portable_win64.zip";
|
|
|
|
# Move to source directory
|
|
pushd "${SOURCE_DIR}"
|
|
|
|
# Get version
|
|
if [[ ${IS_UNSTABLE} == 'yes' ]]; then
|
|
version="${BUILD_ID}"
|
|
else
|
|
version="$( grep "version:" ./build.yaml | sed -E 's/version: "([0-9\.]+.*)"/\1/' )"
|
|
fi
|
|
|
|
output_dir="dist/jellyfin-server_${version}"
|
|
|
|
# Build binary
|
|
dotnet publish Jellyfin.Server --configuration Release --self-contained --runtime win-x64 --output "${output_dir}"/ -p:DebugSymbols=false -p:DebugType=none -p:UseAppHost=true
|
|
|
|
# Prepare addins
|
|
addin_build_dir="$( mktemp -d )"
|
|
wget ${NSSM_URL} -O "${addin_build_dir}"/nssm.zip
|
|
wget ${FFMPEG_URL} -O "${addin_build_dir}"/jellyfin-ffmpeg.zip
|
|
unzip "${addin_build_dir}"/nssm.zip -d "${addin_build_dir}"
|
|
cp "${addin_build_dir}"/${NSSM_VERSION}/win64/nssm.exe "${output_dir}"/nssm.exe
|
|
unzip "${addin_build_dir}"/jellyfin-ffmpeg.zip -d "${addin_build_dir}"/jellyfin-ffmpeg
|
|
cp "${addin_build_dir}"/jellyfin-ffmpeg/* "${output_dir}"
|
|
rm -rf "${addin_build_dir}"
|
|
|
|
# Create zip package
|
|
pushd dist
|
|
zip -qr jellyfin-server_"${version}".portable.zip jellyfin-server_"${version}"
|
|
popd
|
|
rm -rf "${output_dir}"
|
|
|
|
# Move the artifacts out
|
|
mkdir -p "${ARTIFACT_DIR}/"
|
|
mv dist/jellyfin[-_]*.zip "${ARTIFACT_DIR}/"
|
|
|
|
if [[ ${IS_DOCKER} == YES ]]; then
|
|
chown -Rc "$(stat -c %u:%g "${ARTIFACT_DIR}")" "${ARTIFACT_DIR}"
|
|
fi
|
|
|
|
popd
|