mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 10:58:20 -07:00
28 lines
567 B
Plaintext
28 lines
567 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
#= Fedora 29+ all .rpm
|
||
|
|
||
|
set -o errexit
|
||
|
set -o xtrace
|
||
|
|
||
|
# Move to source directory
|
||
|
pushd ${SOURCE_DIR}
|
||
|
|
||
|
cp -a yarn.lock /tmp/yarn.lock
|
||
|
|
||
|
# Build RPM
|
||
|
make -f fedora/Makefile srpm outdir=/root/rpmbuild/SRPMS
|
||
|
rpmbuild -rb /root/rpmbuild/SRPMS/jellyfin-*.src.rpm
|
||
|
|
||
|
# Move the artifacts out
|
||
|
mv /root/rpmbuild/RPMS/noarch/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 fedora/jellyfin*.tar.gz
|
||
|
cp -a /tmp/yarn.lock yarn.lock
|
||
|
|
||
|
popd
|