2019-02-09 02:08:34 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Builds the DEB inside the Docker container
|
|
|
|
|
|
|
|
set -o errexit
|
|
|
|
set -o xtrace
|
|
|
|
|
|
|
|
# Move to source directory
|
|
|
|
pushd ${SOURCE_DIR}
|
|
|
|
|
2019-02-10 00:32:06 +00:00
|
|
|
# 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
|
|
|
|
|
2019-02-09 02:08:34 +00:00
|
|
|
# Build DEB
|
|
|
|
dpkg-buildpackage -us -uc
|
|
|
|
|
|
|
|
# Move the artifacts out
|
|
|
|
mkdir -p ${ARTIFACT_DIR}/deb
|
|
|
|
mv /jellyfin_* ${ARTIFACT_DIR}/deb/
|