mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-09-29 15:31:04 -04:00
I hate this quick and dirty hack but it makes no sense to port to master. This fixes a bug whereby we'd build with the master Web branch on releases due to never checking out the right branch. This is already obsoleted in the master branch since #1925 already replaces this entire process for Debuntu builds, and others should be fixed with a more robust solution. That said, for the 10.4.z release chain, this ultra-quick solution fixes the problem without changing much.
36 lines
907 B
Bash
Executable File
36 lines
907 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Builds the DEB inside the Docker container
|
|
|
|
set -o errexit
|
|
set -o xtrace
|
|
|
|
# Move to source directory
|
|
pushd ${SOURCE_DIR}
|
|
|
|
# Remove build-dep for dotnet-sdk-2.2, since it's not a package in this image
|
|
sed -i '/dotnet-sdk-2.2,/d' debian/control
|
|
|
|
# Clone down and build Web frontend
|
|
web_build_dir="$( mktemp -d )"
|
|
web_target="${SOURCE_DIR}/MediaBrowser.WebDashboard/jellyfin-web"
|
|
git clone https://github.com/jellyfin/jellyfin-web.git ${web_build_dir}/
|
|
pushd ${web_build_dir}
|
|
if [[ -n ${web_branch} ]]; then
|
|
git checkout origin/${web_branch}
|
|
fi
|
|
yarn install
|
|
mkdir -p ${web_target}
|
|
mv dist/* ${web_target}/
|
|
popd
|
|
rm -rf ${web_build_dir}
|
|
|
|
# Build DEB
|
|
export CONFIG_SITE=/etc/dpkg-cross/cross-config.${ARCH}
|
|
dpkg-buildpackage -us -uc -aarmhf
|
|
|
|
# Move the artifacts out
|
|
mkdir -p ${ARTIFACT_DIR}/deb
|
|
mv /jellyfin[-_]* ${ARTIFACT_DIR}/deb/
|
|
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|