aboutsummaryrefslogtreecommitdiff
path: root/deployment/build.ubuntu.amd64
diff options
context:
space:
mode:
Diffstat (limited to 'deployment/build.ubuntu.amd64')
-rwxr-xr-xdeployment/build.ubuntu.amd6437
1 files changed, 0 insertions, 37 deletions
diff --git a/deployment/build.ubuntu.amd64 b/deployment/build.ubuntu.amd64
deleted file mode 100755
index 6fd87a3ae..000000000
--- a/deployment/build.ubuntu.amd64
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/bash
-
-#= Ubuntu 22.04+ amd64 .deb
-
-set -o errexit
-set -o xtrace
-
-# Move to source directory
-pushd "${SOURCE_DIR}"
-
-# Modify changelog to unstable configuration if IS_UNSTABLE
-if [[ ${IS_UNSTABLE} == 'yes' ]]; then
- pushd debian
- PR_ID=$( git log --grep 'Merge pull request' --oneline --single-worktree --first-parent | head -1 | grep --color=none -Eo '#[0-9]+' | tr -d '#' )
-
- cat <<EOF >changelog
-jellyfin-server (${BUILD_ID}-unstable) unstable; urgency=medium
-
- * Jellyfin Server unstable build ${BUILD_ID} for merged PR #${PR_ID}
-
- -- Jellyfin Packaging Team <packaging@jellyfin.org> $( date --rfc-2822 )
-EOF
- popd
-fi
-
-# Build DEB
-dpkg-buildpackage -us -uc --pre-clean --post-clean
-
-mkdir -p "${ARTIFACT_DIR}/"
-mv ../jellyfin*.{deb,dsc,tar.gz,buildinfo,changes} "${ARTIFACT_DIR}/"
-
-if [[ ${IS_DOCKER} == YES ]]; then
- cp -a /tmp/control.orig debian/control
- chown -Rc "$(stat -c %u:%g "${ARTIFACT_DIR}")" "${ARTIFACT_DIR}"
-fi
-
-popd