jellyfin-web/deployment/build.fedora

42 lines
1.1 KiB
Plaintext
Raw Normal View History

2020-03-23 21:06:35 -07:00
#!/bin/bash
set -o errexit
set -o xtrace
# move to source directory
2020-03-23 21:06:35 -07:00
pushd ${SOURCE_DIR}
2021-03-01 16:28:44 -07:00
cp -a package-lock.json /tmp/package-lock.json
2020-03-23 21:06:35 -07:00
# modify changelog to unstable configuration if IS_UNSTABLE
if [[ ${IS_UNSTABLE} == 'yes' ]]; then
2020-06-15 03:54:00 -07:00
pushd fedora
PR_ID=$( git log --grep 'Merge pull request' --oneline --single-worktree --first-parent | head -1 | grep --color=none -Eo '#[0-9]+' | tr -d '#' )
2020-06-15 03:54:00 -07:00
2020-06-12 13:14:50 -07:00
sed -i "s/Version:.*/Version: ${BUILD_ID}/" jellyfin-web.spec
sed -i "/%changelog/q" jellyfin-web.spec
2020-06-15 03:54:00 -07:00
cat <<EOF >>jellyfin-web.spec
* $( LANG=C date '+%a %b %d %Y' ) Jellyfin Packaging Team <packaging@jellyfin.org>
- Jellyfin Web unstable build ${BUILD_ID} for merged PR #${PR_ID}
EOF
popd
fi
# build rpm
2020-03-23 21:06:35 -07:00
make -f fedora/Makefile srpm outdir=/root/rpmbuild/SRPMS
rpmbuild -rb /root/rpmbuild/SRPMS/jellyfin-*.src.rpm
# move the artifacts
mv /root/rpmbuild/RPMS/noarch/jellyfin-*.rpm /root/rpmbuild/SRPMS/jellyfin-*.src.rpm ${ARTIFACT_DIR}
2020-03-23 21:06:35 -07:00
if [[ ${IS_DOCKER} == YES ]]; then
2020-06-15 03:54:00 -07:00
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
2020-03-23 21:06:35 -07:00
fi
rm -f fedora/jellyfin*.tar.gz
2021-03-01 16:28:44 -07:00
cp -a /tmp/package-lock.json package-lock.json
2020-03-23 21:06:35 -07:00
popd