[FIX] Try to fix weird build issue
This commit is contained in:
parent
7c8245808c
commit
679167b4ee
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue