47 lines
927 B
Bash
Executable File
47 lines
927 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#= Debian .deb builder
|
|
|
|
set -o errexit
|
|
set -o xtrace
|
|
|
|
# Create the intermediate build dir
|
|
BUILD_DIR="/build"
|
|
mkdir -p ${BUILD_DIR}
|
|
|
|
# Move to source directory
|
|
pushd "${SOURCE_DIR}"
|
|
|
|
# Build server
|
|
pushd jellyfin-server
|
|
dotnet publish Jellyfin.Server --configuration Release --output ${BUILD_DIR}/ -p:DebugSymbols=false -p:DebugType=none -p:UseAppHost=false
|
|
popd
|
|
|
|
# Build web
|
|
pushd jellyfin-web
|
|
npm ci --no-audit --unsafe-perm
|
|
npm run build:production
|
|
mv dist ${BUILD_DIR}/jellyfin-web
|
|
popd
|
|
|
|
mkdir -p "${ARTIFACT_DIR}/"
|
|
|
|
pushd ${BUILD_DIR}
|
|
for ARCHIVE_TYPE in $( tr ',' '\n' <<<"${ARCHIVE_TYPES}" ); do
|
|
case ${ARCHIVE_TYPE} in
|
|
tar)
|
|
tar -czf "${ARTIFACT_DIR}"/jellyfin_${JVERS}.tar.gz .
|
|
;;
|
|
zip)
|
|
zip -qr "${ARTIFACT_DIR}"/jellyfin_${JVERS}.zip .
|
|
;;
|
|
esac
|
|
done
|
|
popd
|
|
|
|
# Clean up any lingering artifacts
|
|
make -f debian/rules clean
|
|
rm -rf ${BUILD_DIR}
|
|
|
|
popd
|