[FIX] Bodge through Telodendria's schemas

This commit is contained in:
lda 2023-11-03 11:30:55 +01:00
parent 4cbb5793f7
commit 7376b2ca71

View file

@ -32,10 +32,11 @@ runs:
echo Compiling ${{inputs.checkout}}...
cd ${{inputs.checkout}}
export CC="${{inputs.compiler}}"
if ./configure --prefix=/usr --no-static && make; then
echo "Built ${{inputs.checkout}} properly"
else
# Fails? Do it again.
./configure --prefix=/usr --no-static && make
./configure --prefix=/usr --no-static
if ! make; then
# Fails? Do it again. Hopefully, it should have
# seen all of the schemas by then.
./configure --prefix=/usr --no-static
make 2>&1
fi
[ "${{inputs.install}}" = "true" ] && make install