2019-07-03 14:25:36 +00:00
|
|
|
#!/usr/bin/bash -eux
|
2019-09-20 10:49:00 +00:00
|
|
|
. /etc/os-release
|
2022-03-17 13:02:49 +00:00
|
|
|
|
|
|
|
version=$(echo "${VERSION_ID}" | cut -d. -f1)
|
|
|
|
arch="x86_64"
|
|
|
|
|
|
|
|
case $NAME in
|
|
|
|
"Fedora Linux"|"Fedora")
|
|
|
|
mock="fedora-${version}-${arch}"
|
2022-08-13 09:56:22 +00:00
|
|
|
repos="local"
|
2022-03-17 13:02:49 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
"CentOS Stream"|"Red Hat Enterprise Linux")
|
2022-08-13 09:56:22 +00:00
|
|
|
mock="centos-stream+epel-next-${version}-${arch}"
|
|
|
|
repos="local,local-centos-stream"
|
2022-03-17 13:02:49 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
echo "Not supported OS" >&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
2019-07-03 14:25:36 +00:00
|
|
|
|
2021-01-08 22:45:30 +00:00
|
|
|
pkgname=${1}
|
|
|
|
shift
|
|
|
|
|
2022-03-17 13:02:49 +00:00
|
|
|
config="/tmp/${mock}-ci.cfg"
|
2019-07-03 14:25:36 +00:00
|
|
|
|
|
|
|
# create mock config if not present
|
|
|
|
# this makes sure tested version of pyproject-rpm-macros is available
|
|
|
|
# TODO: check if it has precedence if the release was not bumped in tested PR
|
|
|
|
if [ ! -f $config ]; then
|
2022-03-17 13:02:49 +00:00
|
|
|
original="/etc/mock/${mock}.cfg"
|
2019-10-08 11:40:26 +00:00
|
|
|
cp $original $config
|
|
|
|
|
2021-01-08 13:50:15 +00:00
|
|
|
echo -e '\n\n' >> $config
|
2022-04-22 19:43:03 +00:00
|
|
|
echo -e 'config_opts["package_manager_max_attempts"] = 10' >> $config
|
|
|
|
echo -e 'config_opts["package_manager_attempt_delay"] = 60' >> $config
|
2020-02-07 18:52:27 +00:00
|
|
|
echo -e '\n\nconfig_opts[f"{config_opts.package_manager}.conf"] += """' >> $config
|
2020-03-06 14:05:24 +00:00
|
|
|
|
|
|
|
# The zuul CI has zuul-build.repo
|
|
|
|
# The Jenkins CI has test-<pkgname>.repo
|
|
|
|
# We run this code from various packages, so we support any <pkgname>
|
|
|
|
if [ -f /etc/yum.repos.d/zuul-build.repo ]; then
|
|
|
|
cat /etc/yum.repos.d/zuul-build.repo >> $config
|
|
|
|
else
|
|
|
|
cat /etc/yum.repos.d/test-*.repo >> $config
|
|
|
|
fi
|
2019-10-08 11:40:26 +00:00
|
|
|
echo -e '\n"""\n' >> $config
|
2019-07-03 14:25:36 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# prepare the rpmbuild folders, make sure nothing relevant is there
|
|
|
|
mkdir -p ~/rpmbuild/{SOURCES,SRPMS}
|
2021-01-08 22:45:30 +00:00
|
|
|
rm -f ~/rpmbuild/SRPMS/${pkgname}-*.src.rpm
|
2019-07-03 14:25:36 +00:00
|
|
|
|
|
|
|
# download the sources and create SRPM
|
2021-01-08 22:45:30 +00:00
|
|
|
spectool -g -R ${pkgname}.spec
|
|
|
|
rpmbuild -bs ${pkgname}.spec
|
2019-07-03 14:25:36 +00:00
|
|
|
|
|
|
|
# build the SRPM in mock
|
2019-09-18 15:09:03 +00:00
|
|
|
res=0
|
2022-08-16 23:46:00 +00:00
|
|
|
mock --isolation=simple -r $config --enablerepo="$repos" init
|
|
|
|
mock --isolation=simple -r $config --enablerepo="$repos" "$@" ~/rpmbuild/SRPMS/${pkgname}-*.src.rpm || res=$?
|
2019-07-03 14:25:36 +00:00
|
|
|
|
|
|
|
# move the results to the artifacts directory, so we can examine them
|
|
|
|
artifacts=${TEST_ARTIFACTS:-/tmp/artifacts}
|
2022-03-17 13:02:49 +00:00
|
|
|
|
|
|
|
# on Fedora Rawhide, the directory contains "rawhide" instead of the actual version
|
|
|
|
pushd /var/lib/mock/${mock}/result || pushd /var/lib/mock/${mock/${version}/rawhide}/result
|
2019-09-18 15:09:03 +00:00
|
|
|
mv *.rpm ${artifacts}/ || :
|
2019-07-03 14:25:36 +00:00
|
|
|
for log in *.log; do
|
2021-01-08 22:45:30 +00:00
|
|
|
mv ${log} ${artifacts}/${pkgname}-${log}
|
2019-07-03 14:25:36 +00:00
|
|
|
done
|
|
|
|
popd
|
2019-09-18 15:09:03 +00:00
|
|
|
|
|
|
|
exit $res
|