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.
7 lines
198 B
Bash
Executable file
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
|