aboutsummaryrefslogtreecommitdiff
path: root/deployment/build.centos.amd64
diff options
context:
space:
mode:
Diffstat (limited to 'deployment/build.centos.amd64')
-rwxr-xr-xdeployment/build.centos.amd6459
1 files changed, 0 insertions, 59 deletions
diff --git a/deployment/build.centos.amd64 b/deployment/build.centos.amd64
deleted file mode 100755
index 26be377f10..0000000000
--- a/deployment/build.centos.amd64
+++ /dev/null
@@ -1,59 +0,0 @@
-#!/bin/bash
-
-#= CentOS/RHEL 9+ amd64 .rpm
-
-set -o errexit
-set -o xtrace
-
-# Move to source directory
-pushd "${SOURCE_DIR}"
-
-if [[ ${IS_DOCKER} == YES ]]; then
- # Remove BuildRequires for dotnet, since it's installed manually
- pushd centos
-
- cp -a jellyfin.spec /tmp/spec.orig
- sed -i 's/BuildRequires: dotnet/# BuildRequires: dotnet/' jellyfin.spec
-
- popd
-fi
-
-# Modify changelog to unstable configuration if IS_UNSTABLE
-if [[ ${IS_UNSTABLE} == 'yes' ]]; then
- pushd centos
-
- PR_ID=$( git log --grep 'Merge pull request' --oneline --single-worktree --first-parent | head -1 | grep --color=none -Eo '#[0-9]+' | tr -d '#' )
-
- sed -i "s/Version:.*/Version: ${BUILD_ID}/" jellyfin.spec
- sed -i "/%changelog/q" jellyfin.spec
-
- cat <<EOF >>jellyfin.spec
-* $( LANG=C date '+%a %b %d %Y' ) Jellyfin Packaging Team <packaging@jellyfin.org>
-- Jellyfin Server unstable build ${BUILD_ID} for merged PR #${PR_ID}
-EOF
- popd
-fi
-
-# Build RPM
-make -f centos/Makefile srpm outdir=/root/rpmbuild/SRPMS
-rpmbuild --rebuild -bb /root/rpmbuild/SRPMS/jellyfin-*.src.rpm
-
-# Move the artifacts out
-mv /root/rpmbuild/RPMS/x86_64/jellyfin-*.rpm /root/rpmbuild/SRPMS/jellyfin-*.src.rpm "${ARTIFACT_DIR}/"
-
-if [[ ${IS_DOCKER} == YES ]]; then
- chown -Rc "$(stat -c %u:%g "${ARTIFACT_DIR}")" "${ARTIFACT_DIR}"
-fi
-
-rm -f centos/jellyfin*.tar.gz
-
-if [[ ${IS_DOCKER} == YES ]]; then
- pushd centos
-
- cp -a /tmp/spec.orig jellyfin.spec
- chown -Rc "$(stat -c %u:%g "${ARTIFACT_DIR}")" "${ARTIFACT_DIR}"
-
- popd
-fi
-
-popd