compiler-rt/setup_cross_packages.sh
Tulio Magno Quites Machado Filho 60a9f71c70 Better integrate with Koji
When testing builds from Koji, the i686 repositories are not available
on x86_64, requiring packages to be manually installed in order to run
cross-compile-i686.
2023-07-17 18:38:27 -03:00

7 lines
198 B
Bash
Executable file

#!/usr/bin/env sh
if [[ x"$KOJI_TASK_ID" != "x" ]]; then
dnf install -y koji
koji download-build --noprogress -a i686 --task-id $KOJI_TASK_ID
dnf install -y ./compiler-rt-*.i686.rpm
fi