2023-07-20 13:23:30 +00:00
|
|
|
set -eo xtrace
|
|
|
|
# Rpmbuild expects patches in the _sourcedir
|
|
|
|
mv *.patch $TMT_SOURCE_DIR
|
|
|
|
mkdir builddir
|
|
|
|
rpmbuild -bp pcs.spec --nodeps --define "_sourcedir $TMT_SOURCE_DIR" \
|
2024-01-05 16:59:13 +00:00
|
|
|
--define "_builddir $(pwd)/builddir"
|
2023-07-20 13:23:30 +00:00
|
|
|
# Remove pcs-web-ui in builddir for "cd pcs-*" to have exactly one match
|
|
|
|
rm -rf builddir/pcs-web-ui-*
|
|
|
|
cd builddir/pcs-*
|
|
|
|
# Run autotools, use bundled dependencies from the system
|
|
|
|
export PYTHONPATH=/usr/lib64/pcs/pcs_bundled/packages/
|
|
|
|
export GEM_HOME=/usr/lib64/pcsd/vendor/bundle/
|
|
|
|
./autogen.sh
|
2024-01-05 16:59:13 +00:00
|
|
|
./configure
|
2023-07-20 13:23:30 +00:00
|
|
|
# Remove pcs sources to make sure tests are not using any of those files
|
|
|
|
rm -rf pcs
|