mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
40 lines
1.3 KiB
Bash
40 lines
1.3 KiB
Bash
#!/bin/bash
|
|
|
|
RED='\033[0;31m'
|
|
NC='\033[0m'
|
|
|
|
source $HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR}/byond/bin/byondsetup
|
|
|
|
# Copy example configs
|
|
cp config/example/* config/
|
|
|
|
# Define any unit test defines that need to run
|
|
echo "#define ${TEST_DEFINE} 1" > ${TEST_FILE}
|
|
|
|
# Compile a copy of the codebase
|
|
DreamMaker $BASENAME.dme
|
|
exitVal=$?
|
|
|
|
# Compile failed on map_test
|
|
if [ $exitVal -gt 0 ] && [ $TEST_DEFINE = "MAP_TEST" ]; then
|
|
echo "${RED}Some POIs appear to contain map-specific objects or code. Please isolate map-specific items/code from POIs.${NC}"
|
|
exit 1
|
|
# Compile failed on away_mission_test
|
|
elif [ $exitVal -gt 0 ] && [ $TEST_DEFINE = "AWAY_MISSION_TEST" ]; then
|
|
echo "${RED}Some away missions failed to compile. Please check them for missing items/objects by trying to compile them in DreamMaker.${NC}"
|
|
exit 1
|
|
# Compile failed on unit_test
|
|
elif [ $exitVal -gt 0 ] && [ $TEST_DEFINE = "UNIT_TEST" ]; then
|
|
echo "${RED}Compiling the codebase normally failed. Please review the compile errors and correct them, usually before making your PR.${NC}"
|
|
exit 1
|
|
fi
|
|
|
|
# If we're running, run
|
|
# YW Edit removes "|| exit 1" until we can fix our submaps
|
|
if [ $RUN -eq 1 ];
|
|
then
|
|
DreamDaemon $BASENAME.dmb -invisible -trusted -core 2>&1 | tee log.txt;
|
|
grep "All Unit Tests Passed" log.txt
|
|
grep "Caught 0 Runtimes" log.txt
|
|
fi
|