lila/bin/build-deps.sh
2016-05-07 09:58:20 +02:00

41 lines
803 B
Bash
Executable file

#!/bin/sh
set -e
dir=$(mktemp -d)
echo "Building in $dir"
cd "$dir"
git clone https://github.com/gilt/gfc-semver
cd gfc-semver
sbt publish-local
cd ..
git clone https://github.com/ornicar/ReactiveMongo --branch lichess
cd ReactiveMongo
git checkout b3e895f1c723d7cb518763f31fba62dc74311eab
sbt publish-local
cd ..
git clone https://github.com/ornicar/scalalib
cd scalalib
sbt publish-local
cd ..
git clone https://github.com/ornicar/scala-kit --branch lichess-fork
cd scala-kit
git checkout b019b3a2522d3f1697c39ec0c79e88c18ea49a91
sbt -Dversion=1.2.11-THIB publish-local
cd ..
git clone https://github.com/ornicar/maxmind-geoip2-scala --branch customBuild
cd maxmind-geoip2-scala
sbt publish-local
cd ..
git clone https://github.com/Nycto/Hasher
cd Hasher
sbt publish-local
cd ..
rm -rf "$dir"