Skip to content

Commit

Permalink
CI: github actions build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stenya committed Jun 21, 2023
1 parent 4b8f8c3 commit 23a4010
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion daemon/References/Linux/scripts/build-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,15 @@ then
echo "========== Compiling kem-helper ======================"
echo "======================================================"
cd $SCRIPT_DIR
./build-kem-helper.sh

if [ ! -z "$GITHUB_ACTIONS" ];
then
echo "! GITHUB_ACTIONS detected ! It is just a build test."
echo "! Skipped compilation of kem-helper !"
else
./build-kem-helper.sh
fi

else
echo "kem-helper already compiled. Skipping build."
fi
Expand Down

0 comments on commit 23a4010

Please sign in to comment.