mirror of https://github.com/procxx/kepka.git
improved deploy scripts
This commit is contained in:
parent
44f62fa9ba
commit
2ed9d68b46
|
@ -1,5 +1,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
DeployTarget="$1"
|
||||||
|
|
||||||
while IFS='' read -r line || [[ -n "$line" ]]; do
|
while IFS='' read -r line || [[ -n "$line" ]]; do
|
||||||
set $line
|
set $line
|
||||||
eval $1="$2"
|
eval $1="$2"
|
||||||
|
@ -19,7 +21,7 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f "Target" ]; then
|
if [ ! -f "Target" ]; then
|
||||||
echo "Build target not found!"
|
echo "Deploy target not found!"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -41,7 +43,24 @@ elif [ "$BuildTarget" == "linux32" ]; then
|
||||||
ReleasePath="./../Linux/Release"
|
ReleasePath="./../Linux/Release"
|
||||||
RemoteFolder="tlinux32"
|
RemoteFolder="tlinux32"
|
||||||
elif [ "$BuildTarget" == "mac" ]; then
|
elif [ "$BuildTarget" == "mac" ]; then
|
||||||
echo "Deploying three versions of $AppVersionStrFull: for Windows, OS X 10.6 and 10.7 and OS X 10.8+.."
|
DeployMac="0"
|
||||||
|
DeployMac32="0"
|
||||||
|
DeployWin="0"
|
||||||
|
if [ "$DeployTarget" == "mac" ]; then
|
||||||
|
DeployMac="1"
|
||||||
|
echo "Deploying version $AppVersionStrFull for OS X 10.8+.."
|
||||||
|
elif [ "$DeployTarget" == "mac32" ]; then
|
||||||
|
DeployMac32="1"
|
||||||
|
echo "Deploying version $AppVersionStrFull for OS X 10.6 and 10.7.."
|
||||||
|
elif [ "$DeployTarget" == "win" ]; then
|
||||||
|
DeployWin="1"
|
||||||
|
echo "Deploying version $AppVersionStrFull for Windows.."
|
||||||
|
else
|
||||||
|
DeployMac="1"
|
||||||
|
DeployMac32="1"
|
||||||
|
DeployWin="1"
|
||||||
|
echo "Deploying three versions of $AppVersionStrFull: for Windows, OS X 10.6 and 10.7 and OS X 10.8+.."
|
||||||
|
fi
|
||||||
UpdateFile="tmacupd$AppVersion"
|
UpdateFile="tmacupd$AppVersion"
|
||||||
SetupFile="tsetup.$AppVersionStrFull.dmg"
|
SetupFile="tsetup.$AppVersionStrFull.dmg"
|
||||||
ReleasePath="./../Mac/Release"
|
ReleasePath="./../Mac/Release"
|
||||||
|
@ -57,6 +76,8 @@ elif [ "$BuildTarget" == "mac" ]; then
|
||||||
WinRemoteFolder="tsetup"
|
WinRemoteFolder="tsetup"
|
||||||
DropboxPath="./../../../Dropbox/Telegram/deploy/$AppVersionStrMajor"
|
DropboxPath="./../../../Dropbox/Telegram/deploy/$AppVersionStrMajor"
|
||||||
DropboxDeployPath="$DropboxPath/$AppVersionStrFull"
|
DropboxDeployPath="$DropboxPath/$AppVersionStrFull"
|
||||||
|
DropboxSetupFile="$SetupFile"
|
||||||
|
DropboxMac32SetupFile="$Mac32SetupFile"
|
||||||
elif [ "$BuildTarget" == "mac32" ] || [ "$BuildTarget" = "macstore" ]; then
|
elif [ "$BuildTarget" == "mac32" ] || [ "$BuildTarget" = "macstore" ]; then
|
||||||
echo "No need to deploy this target."
|
echo "No need to deploy this target."
|
||||||
exit
|
exit
|
||||||
|
@ -68,6 +89,11 @@ fi
|
||||||
DeployPath="$ReleasePath/deploy/$AppVersionStrMajor/$AppVersionStrFull"
|
DeployPath="$ReleasePath/deploy/$AppVersionStrMajor/$AppVersionStrFull"
|
||||||
|
|
||||||
if [ "$BetaVersion" != "0" ]; then
|
if [ "$BetaVersion" != "0" ]; then
|
||||||
|
if [ ! -f "$DeployPath/$BetaKeyFile" ]; then
|
||||||
|
echo "Beta key file for $AppVersionStrFull not found :("
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
while IFS='' read -r line || [[ -n "$line" ]]; do
|
while IFS='' read -r line || [[ -n "$line" ]]; do
|
||||||
BetaSignature="$line"
|
BetaSignature="$line"
|
||||||
done < "$DeployPath/$BetaKeyFile"
|
done < "$DeployPath/$BetaKeyFile"
|
||||||
|
@ -77,8 +103,10 @@ if [ "$BetaVersion" != "0" ]; then
|
||||||
SetupFile="tbeta${BetaVersion}_${BetaSignature}.tar.xz"
|
SetupFile="tbeta${BetaVersion}_${BetaSignature}.tar.xz"
|
||||||
elif [ "$BuildTarget" == "mac" ]; then
|
elif [ "$BuildTarget" == "mac" ]; then
|
||||||
SetupFile="tbeta${BetaVersion}_${BetaSignature}.zip"
|
SetupFile="tbeta${BetaVersion}_${BetaSignature}.zip"
|
||||||
|
DropboxSetupFile="tbeta${BetaVersion}_${BetaSignature}_mac.zip"
|
||||||
Mac32UpdateFile="${Mac32UpdateFile}_${BetaSignature}"
|
Mac32UpdateFile="${Mac32UpdateFile}_${BetaSignature}"
|
||||||
Mac32SetupFile="tbeta${BetaVersion}_${BetaSignature}.zip"
|
Mac32SetupFile="tbeta${BetaVersion}_${BetaSignature}.zip"
|
||||||
|
DropboxMac32SetupFile="tbeta${BetaVersion}_${BetaSignature}_mac32.zip"
|
||||||
WinUpdateFile="${WinUpdateFile}_${BetaSignature}"
|
WinUpdateFile="${WinUpdateFile}_${BetaSignature}"
|
||||||
WinPortableFile="tbeta${BetaVersion}_${BetaSignature}.zip"
|
WinPortableFile="tbeta${BetaVersion}_${BetaSignature}.zip"
|
||||||
fi
|
fi
|
||||||
|
@ -86,71 +114,104 @@ fi
|
||||||
|
|
||||||
#if [ "$BuildTarget" == "linux" ] || [ "$BuildTarget" == "linux32" ] || [ "$BuildTarget" == "mac" ] || [ "$BuildTarget" == "mac32" ] || [ "$BuildTarget" == "macstore" ]; then
|
#if [ "$BuildTarget" == "linux" ] || [ "$BuildTarget" == "linux32" ] || [ "$BuildTarget" == "mac" ] || [ "$BuildTarget" == "mac32" ] || [ "$BuildTarget" == "macstore" ]; then
|
||||||
|
|
||||||
if [ ! -f "$DeployPath/$UpdateFile" ]; then
|
if [ "$BuildTarget" != "mac" ] || [ "$DeployMac" == "1" ]; then
|
||||||
|
if [ ! -f "$DeployPath/$UpdateFile" ]; then
|
||||||
echo "$UpdateFile not found!";
|
echo "$UpdateFile not found!";
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f "$DeployPath/$SetupFile" ]; then
|
if [ ! -f "$DeployPath/$SetupFile" ]; then
|
||||||
echo "$SetupFile not found!"
|
echo "$SetupFile not found!"
|
||||||
exit 1
|
exit 1
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$BuildTarget" == "mac" ]; then
|
if [ "$BuildTarget" == "mac" ]; then
|
||||||
if [ ! -f "$Mac32DeployPath/$Mac32UpdateFile" ]; then
|
if [ "$DeployMac32" == "1" ]; then
|
||||||
echo "$Mac32UpdateFile not found!"
|
if [ ! -f "$Mac32DeployPath/$Mac32UpdateFile" ]; then
|
||||||
exit 1
|
echo "$Mac32UpdateFile not found!"
|
||||||
fi
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
if [ ! -f "$Mac32DeployPath/$Mac32SetupFile" ]; then
|
if [ ! -f "$Mac32DeployPath/$Mac32SetupFile" ]; then
|
||||||
echo "$Mac32SetupFile not found!"
|
echo "$Mac32SetupFile not found!"
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ! -f "$WinDeployPath/$WinUpdateFile" ]; then
|
|
||||||
echo "$WinUpdateFile not found!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$BetaVersion" == "0" ]; then
|
|
||||||
if [ ! -f "$WinDeployPath/$WinSetupFile" ]; then
|
|
||||||
echo "$WinSetupFile not found!"
|
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f "$WinDeployPath/$WinPortableFile" ]; then
|
if [ "$DeployWin" == "1" ]; then
|
||||||
echo "$WinPortableFile not found!"
|
if [ ! -f "$WinDeployPath/$WinUpdateFile" ]; then
|
||||||
exit 1
|
echo "$WinUpdateFile not found!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$BetaVersion" == "0" ]; then
|
||||||
|
if [ ! -f "$WinDeployPath/$WinSetupFile" ]; then
|
||||||
|
echo "$WinSetupFile not found!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -f "$WinDeployPath/$WinPortableFile" ]; then
|
||||||
|
echo "$WinPortableFile not found!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -d "./../../../Dropbox/Telegram/deploy/$AppVersionStrMajor" ]; then
|
if [ ! -d "$DropboxPath" ]; then
|
||||||
mkdir "./../../../Dropbox/Telegram/deploy/$AppVersionStrMajor"
|
mkdir "$DropboxPath"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d "$DropboxDeployPath" ]; then
|
||||||
|
mkdir "$DropboxDeployPath"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
#fi
|
#fi
|
||||||
|
|
||||||
if [ "$BuildTarget" == "linux" ] || [ "$BuildTarget" == "linux32" ] || [ "$BuildTarget" == "mac" ]; then
|
if [ "$BuildTarget" == "linux" ] || [ "$BuildTarget" == "linux32" ] || [ "$BuildTarget" == "mac" ]; then
|
||||||
scp "$DeployPath/$UpdateFile" "tmaster:tdesktop/www/$RemoteFolder/"
|
if [ "$BuildTarget" != "mac" ] || [ "$DeployMac" == "1" ]; then
|
||||||
scp "$DeployPath/$SetupFile" "tmaster:tdesktop/www/$RemoteFolder/"
|
scp "$DeployPath/$UpdateFile" "tmaster:tdesktop/www/$RemoteFolder/"
|
||||||
|
scp "$DeployPath/$SetupFile" "tmaster:tdesktop/www/$RemoteFolder/"
|
||||||
|
fi
|
||||||
if [ "$BuildTarget" == "mac" ]; then
|
if [ "$BuildTarget" == "mac" ]; then
|
||||||
scp "$Mac32DeployPath/$Mac32UpdateFile" "tmaster:tdesktop/www/$Mac32RemoteFolder/"
|
if [ "$DeployMac32" == "1" ]; then
|
||||||
scp "$Mac32DeployPath/$Mac32SetupFile" "tmaster:tdesktop/www/$Mac32RemoteFolder/"
|
scp "$Mac32DeployPath/$Mac32UpdateFile" "tmaster:tdesktop/www/$Mac32RemoteFolder/"
|
||||||
scp "$WinDeployPath/$WinUpdateFile" "tmaster:tdesktop/www/$WinRemoteFolder/"
|
scp "$Mac32DeployPath/$Mac32SetupFile" "tmaster:tdesktop/www/$Mac32RemoteFolder/"
|
||||||
if [ "$BetaVersion" == "0" ]; then
|
fi
|
||||||
scp "$WinDeployPath/$WinSetupFile" "tmaster:tdesktop/www/$WinRemoteFolder/"
|
if [ "$DeployWin" == "1" ]; then
|
||||||
|
scp "$WinDeployPath/$WinUpdateFile" "tmaster:tdesktop/www/$WinRemoteFolder/"
|
||||||
|
if [ "$BetaVersion" == "0" ]; then
|
||||||
|
scp "$WinDeployPath/$WinSetupFile" "tmaster:tdesktop/www/$WinRemoteFolder/"
|
||||||
|
fi
|
||||||
|
scp "$WinDeployPath/$WinPortableFile" "tmaster:tdesktop/www/$WinRemoteFolder/"
|
||||||
fi
|
fi
|
||||||
scp "$WinDeployPath/$WinPortableFile" "tmaster:tdesktop/www/$WinRemoteFolder/"
|
|
||||||
|
|
||||||
mv -v "$WinDeployPath" "$DropboxPath/"
|
if [ "$DeployMac" == "1" ]; then
|
||||||
|
cp -v "$DeployPath/$UpdateFile" "$DropboxDeployPath/"
|
||||||
cp -v "$DeployPath/$UpdateFile" "$DropboxDeployPath/"
|
cp -v "$DeployPath/$SetupFile" "$DropboxDeployPath/$DropboxSetupFile"
|
||||||
cp -v "$DeployPath/$SetupFile" "$DropboxDeployPath/"
|
if [ -d "$DropboxDeployPath/Telegram.app.dSYM" ]; then
|
||||||
cp -rv "$DeployPath/Telegram.app.dSYM" "$DropboxDeployPath/"
|
rm -rf "$DropboxDeployPath/Telegram.app.dSYM"
|
||||||
cp -v "$Mac32DeployPath/$Mac32UpdateFile" "$DropboxDeployPath/"
|
fi
|
||||||
cp -v "$Mac32DeployPath/$Mac32SetupFile" "$DropboxDeployPath/"
|
cp -rv "$DeployPath/Telegram.app.dSYM" "$DropboxDeployPath/"
|
||||||
cp -rv "$DeployPath/Telegram.app.dSYM" "$DropboxDeployPath/Telegram32.app.dSYM"
|
fi
|
||||||
|
if [ "$DeployMac32" == "1" ]; then
|
||||||
|
mv -v "$Mac32DeployPath/$Mac32UpdateFile" "$DropboxDeployPath/"
|
||||||
|
mv -v "$Mac32DeployPath/$Mac32SetupFile" "$DropboxDeployPath/$DropboxMac32SetupFile"
|
||||||
|
if [ -d "$DropboxDeployPath/Telegram32.app.dSYM" ]; then
|
||||||
|
rm -rf "$DropboxDeployPath/Telegram32.app.dSYM"
|
||||||
|
fi
|
||||||
|
mv -v "$Mac32DeployPath/Telegram.app.dSYM" "$DropboxDeployPath/Telegram32.app.dSYM"
|
||||||
|
fi
|
||||||
|
if [ "$DeployWin" == "1" ]; then
|
||||||
|
mv -v "$WinDeployPath/Telegram.pdb" "$DropboxDeployPath/"
|
||||||
|
mv -v "$WinDeployPath/Updater.exe" "$DropboxDeployPath/"
|
||||||
|
mv -v "$WinDeployPath/Telegram.exe" "$DropboxDeployPath/"
|
||||||
|
mv -v "$WinDeployPath/$WinUpdateFile" "$DropboxDeployPath/"
|
||||||
|
if [ "$BetaVersion" == "0" ]; then
|
||||||
|
mv -v "$WinDeployPath/$WinSetupFile" "$DropboxDeployPath/"
|
||||||
|
fi
|
||||||
|
mv -v "$WinDeployPath/$WinPortableFile" "$DropboxDeployPath/"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue