Switch to GitHub actions for building

This commit is contained in:
Jordan Brown
2020-07-15 13:22:15 -04:00
parent 5432ae41cc
commit 1e5f2fc2b6
13 changed files with 270 additions and 192 deletions
-19
View File
@@ -1,19 +0,0 @@
#!/bin/bash
set -e
retval=1
source $HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR}/byond/bin/byondsetup
if hash DreamMaker 2>/dev/null
then
DreamMaker $DMEName 2>&1 | tee result.log
retval=$?
if ! grep '\- 0 errors, 0 warnings' result.log
then
retval=1 #hard fail, due to warnings or errors
fi
else
echo "Couldn't find the DreamMaker executable, aborting."
retval=2
fi
exit $retval