You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
472 B
19 lines
472 B
#!/bin/sh
|
|
|
|
CAKELISP_DIR=Dependencies/cakelisp
|
|
|
|
# Link Cakelisp if necessary
|
|
[ ! -d "$CAKELISP_DIR" ] && git clone gitea@macoy.me:macoy/cakelisp.git Dependencies/cakelisp
|
|
|
|
# Build Cakelisp itself
|
|
echo "\n\nCakelisp\n\n"
|
|
cd $CAKELISP_DIR
|
|
./Build.sh || exit $?
|
|
|
|
cd ../..
|
|
|
|
CAKELISP=./Dependencies/cakelisp/bin/cakelisp
|
|
|
|
echo "Building and running minimal tests"
|
|
|
|
$CAKELISP src/Config_Linux.cake src/TestConfig_Minimal.cake src/GameLibTests.cake --verbose-processes || exit $?
|
|
|