From 679167b4eedbec5071ebbd705b2d176355ea3d64 Mon Sep 17 00:00:00 2001 From: Load Accumulator Date: Thu, 2 Nov 2023 20:59:24 +0100 Subject: [PATCH] [FIX] Try to fix weird build issue --- action.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index bbf60e6..9a55b05 100644 --- a/action.yml +++ b/action.yml @@ -32,5 +32,8 @@ runs: echo Compiling Cytoplasm... cd ${{inputs.checkout}} 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