[FIX] Try to fix weird build issue

This commit is contained in:
lda 2023-11-02 20:59:24 +01:00
parent 7c8245808c
commit 679167b4ee
Signed by: lda
GPG key ID: 6898757653ABE3E6

View file

@ -32,5 +32,8 @@ runs:
echo Compiling Cytoplasm... echo Compiling Cytoplasm...
cd ${{inputs.checkout}} cd ${{inputs.checkout}}
export CC="${{inputs.compiler}}" export CC="${{inputs.compiler}}"
./configure --prefix=/usr --no-static && make if [ ! ./configure --prefix=/usr --no-static && make ]; then
# Fails? Do it again.
./configure --prefix=/usr --no-static && make
fi
[ "${{inputs.install}}" = "true" ] && make install [ "${{inputs.install}}" = "true" ] && make install