Travis Musings (#5116)

Bumps Flyway.
Moves a script that should be a code check to the code checks.
This commit is contained in:
Erki
2018-11-04 00:36:36 +02:00
committed by Werner
parent 85fe79ac11
commit a6be2156f8
6 changed files with 14 additions and 25 deletions

15
scripts/install-byond.sh Normal file
View File

@@ -0,0 +1,15 @@
#!/bin/sh
set -e
if [ -f "$HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR}/byond/bin/DreamMaker" ];
then
echo "Using cached BYOND directory."
else
echo "Setting up BYOND."
mkdir -p "$HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR}"
cd "$HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR}"
echo "Installing DreamMaker to $PWD"
curl "http://www.byond.com/download/build/${BYOND_MAJOR}/${BYOND_MAJOR}.${BYOND_MINOR}_byond_linux.zip" -o byond.zip
unzip -o byond.zip
cd byond
make here
fi