tstellar / rpms / llvm

Forked from rpms/llvm 5 years ago
Clone
77699b4
#!/bin/bash
77699b4
77699b4
set -ex
77699b4
77699b4
dnf download --disablerepo=* --enablerepo=test-llvm --source llvm
77699b4
77699b4
# The src.rpm is available in the directory the test run from.
77699b4
set +e
77699b4
mock --resultdir=. --old-chroot --with compat_build --rebuild *.src.rpm
77699b4
if [ $? -ne 0 ]; then
77699b4
  cat root.log
77699b4
  cat build.log
77699b4
  exit 1
77699b4
fi
77699b4
77699b4
exit 0