JavaScriptServices/build.sh

47 строки
1.1 KiB
Bash
Исходник Обычный вид История

2016-02-02 19:22:32 +03:00
#!/usr/bin/env bash
2016-05-02 23:10:09 +03:00
repoFolder="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $repoFolder
2016-02-02 19:22:32 +03:00
2017-03-02 05:44:16 +03:00
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/dev.zip"
2016-05-02 23:10:09 +03:00
if [ ! -z $KOREBUILD_ZIP ]; then
koreBuildZip=$KOREBUILD_ZIP
2016-02-02 19:22:32 +03:00
fi
2016-05-02 23:10:09 +03:00
buildFolder=".build"
buildFile="$buildFolder/KoreBuild.sh"
if test ! -d $buildFolder; then
echo "Downloading KoreBuild from $koreBuildZip"
tempFolder="/tmp/KoreBuild-$(uuidgen)"
2016-05-02 23:10:09 +03:00
mkdir $tempFolder
2016-05-02 23:10:09 +03:00
localZipFile="$tempFolder/korebuild.zip"
2016-05-02 23:10:09 +03:00
retries=6
until (wget -O $localZipFile $koreBuildZip 2>/dev/null || curl -o $localZipFile --location $koreBuildZip 2>/dev/null)
do
echo "Failed to download '$koreBuildZip'"
if [ "$retries" -le 0 ]; then
exit 1
fi
retries=$((retries - 1))
echo "Waiting 10 seconds before retrying. Retries left: $retries"
sleep 10s
done
2016-05-02 23:10:09 +03:00
unzip -q -d $tempFolder $localZipFile
2016-05-02 23:10:09 +03:00
mkdir $buildFolder
cp -r $tempFolder/**/build/** $buildFolder
2016-05-02 23:10:09 +03:00
chmod +x $buildFile
2016-05-02 23:10:09 +03:00
# Cleanup
if test -d $tempFolder; then
rm -rf $tempFolder
2016-05-02 23:10:09 +03:00
fi
2016-02-02 19:22:32 +03:00
fi
$buildFile -r $repoFolder "$@"