2015-07-04 12:10:11 +00:00
#! /bin/bash
2019-10-14 20:21:00 +00:00
set -e
2019-09-02 21:03:41 +00:00
2019-10-14 20:21:00 +00:00
outputFolder = '_output'
testPackageFolder = '_tests'
artifactsFolder = "_artifacts" ;
2015-07-04 12:10:11 +00:00
2019-09-02 21:03:41 +00:00
ProgressStart( )
{
echo " Start ' $1 ' "
}
ProgressEnd( )
{
echo " Finish ' $1 ' "
}
UpdateVersionNumber( )
{
if [ " $RADARRVERSION " != "" ] ; then
echo "Updating Version Info"
2019-10-14 20:21:00 +00:00
sed -i'' -e " s/<AssemblyVersion>[0-9.*]\+<\/AssemblyVersion>/<AssemblyVersion> $RADARRVERSION <\/AssemblyVersion>/g " src/Directory.Build.props
sed -i'' -e " s/<AssemblyConfiguration>[\$()A-Za-z-]\+<\/AssemblyConfiguration>/<AssemblyConfiguration> ${ BUILD_SOURCEBRANCHNAME } <\/AssemblyConfiguration>/g " src/Directory.Build.props
sed -i'' -e " s/<string>10.0.0.0<\/string>/<string> $RADARRVERSION <\/string>/g " macOS/Radarr.app/Contents/Info.plist
2019-09-02 21:03:41 +00:00
fi
}
2018-11-23 07:05:47 +00:00
LintUI( )
{
2019-09-02 21:03:41 +00:00
ProgressStart 'ESLint'
2019-10-14 20:21:00 +00:00
yarn lint
2019-09-02 21:03:41 +00:00
ProgressEnd 'ESLint'
2018-11-23 07:05:47 +00:00
2019-09-02 21:03:41 +00:00
ProgressStart 'Stylelint'
2019-10-14 20:21:00 +00:00
if [ " $os " = "windows" ] ; then
yarn stylelint-windows
else
yarn stylelint-linux
fi
2019-09-02 21:03:41 +00:00
ProgressEnd 'Stylelint'
2018-11-23 07:05:47 +00:00
}
2015-07-04 12:10:11 +00:00
Build( )
{
2019-09-02 21:03:41 +00:00
ProgressStart 'Build'
2015-07-04 12:10:11 +00:00
rm -rf $outputFolder
2019-09-02 21:03:41 +00:00
rm -rf $testPackageFolder
2015-07-04 12:10:11 +00:00
2019-12-04 02:18:06 +00:00
slnFile = src/Radarr.sln
2019-10-14 20:21:00 +00:00
if [ $os = "windows" ] ; then
2019-12-04 02:18:06 +00:00
platform = Windows
2019-10-14 20:21:00 +00:00
else
2019-12-04 02:18:06 +00:00
platform = Posix
2019-10-14 20:21:00 +00:00
fi
dotnet clean $slnFile -c Debug
dotnet clean $slnFile -c Release
2020-02-25 22:10:40 +00:00
if [ [ -z " $RID " || -z " $FRAMEWORK " ] ] ;
then
dotnet msbuild -restore $slnFile -p:Configuration= Release -p:Platform= $platform -t:PublishAllRids
else
dotnet msbuild -restore $slnFile -p:Configuration= Release -p:Platform= $platform -p:RuntimeIdentifiers= $RID -t:PublishAllRids
fi
2019-09-02 21:03:41 +00:00
ProgressEnd 'Build'
2015-07-04 12:10:11 +00:00
}
2019-10-14 20:21:00 +00:00
YarnInstall( )
2015-07-04 12:10:11 +00:00
{
2019-09-02 21:03:41 +00:00
ProgressStart 'yarn install'
2019-09-03 02:22:25 +00:00
yarn install --frozen-lockfile
2019-09-02 21:03:41 +00:00
ProgressEnd 'yarn install'
2019-10-14 20:21:00 +00:00
}
2018-11-23 07:05:47 +00:00
2019-10-14 20:21:00 +00:00
RunGulp( )
{
2019-09-02 21:03:41 +00:00
ProgressStart 'Running gulp'
2019-10-14 20:21:00 +00:00
yarn run build --production
2019-09-02 21:03:41 +00:00
ProgressEnd 'Running gulp'
2015-07-04 12:10:11 +00:00
}
2019-10-14 20:20:59 +00:00
PackageFiles( )
2015-07-04 12:10:11 +00:00
{
2019-10-14 20:20:59 +00:00
local folder = " $1 "
local framework = " $2 "
local runtime = " $3 "
2015-07-04 12:10:11 +00:00
2019-10-14 20:20:59 +00:00
rm -rf $folder
mkdir -p $folder
cp -r $outputFolder /$framework /$runtime /publish/* $folder
cp -r $outputFolder /Radarr.Update/$framework /$runtime /publish $folder /Radarr.Update
cp -r $outputFolder /UI $folder
2015-07-04 12:10:11 +00:00
2019-10-14 20:20:59 +00:00
echo "Adding LICENSE"
cp LICENSE $folder
}
PackageLinux( )
{
local framework = " $1 "
2019-10-14 20:21:00 +00:00
local runtime = " $2 "
2015-07-04 12:10:11 +00:00
2019-10-14 20:21:00 +00:00
ProgressStart " Creating $runtime Package for $framework "
2015-07-04 12:10:11 +00:00
2019-10-14 20:21:00 +00:00
local folder = $artifactsFolder /$runtime /$framework /Radarr
2015-07-04 12:10:11 +00:00
2019-10-14 20:21:00 +00:00
PackageFiles " $folder " " $framework " " $runtime "
2019-10-14 20:20:59 +00:00
echo "Removing Service helpers"
rm -f $folder /ServiceUninstall.*
rm -f $folder /ServiceInstall.*
2015-07-04 12:10:11 +00:00
2018-11-23 07:05:47 +00:00
echo "Removing Radarr.Windows"
2019-10-14 20:20:59 +00:00
rm $folder /Radarr.Windows.*
2015-07-04 12:10:11 +00:00
2018-11-23 07:05:47 +00:00
echo "Adding Radarr.Mono to UpdatePackage"
2019-10-14 20:20:59 +00:00
cp $folder /Radarr.Mono.* $folder /Radarr.Update
2019-12-05 21:41:55 +00:00
if [ " $framework " = "netcoreapp3.1" ] ; then
2019-10-14 21:42:30 +00:00
cp $folder /Mono.Posix.NETStandard.* $folder /Radarr.Update
cp $folder /libMonoPosixHelper.* $folder /Radarr.Update
fi
2016-01-16 06:06:33 +00:00
2019-10-14 20:21:00 +00:00
ProgressEnd " Creating $runtime Package for $framework "
2015-07-04 12:10:11 +00:00
}
2019-09-02 21:03:41 +00:00
PackageMacOS( )
2015-07-04 12:10:11 +00:00
{
2019-10-14 20:20:59 +00:00
local framework = " $1 "
ProgressStart " Creating MacOS Package for $framework "
2019-09-02 21:03:41 +00:00
2019-10-14 20:20:59 +00:00
local folder = $artifactsFolder /macos/$framework /Radarr
PackageFiles " $folder " " $framework " "osx-x64"
2019-09-02 21:03:41 +00:00
2019-10-14 20:21:00 +00:00
if [ " $framework " = "net462" ] ; then
echo "Adding Startup script"
cp macOS/Radarr $folder
fi
2019-09-02 21:03:41 +00:00
2019-10-14 20:20:59 +00:00
echo "Removing Service helpers"
rm -f $folder /ServiceUninstall.*
rm -f $folder /ServiceInstall.*
2015-07-04 12:10:11 +00:00
2019-10-14 20:20:59 +00:00
echo "Removing Radarr.Windows"
rm $folder /Radarr.Windows.*
echo "Adding Radarr.Mono to UpdatePackage"
cp $folder /Radarr.Mono.* $folder /Radarr.Update
2019-12-05 21:41:55 +00:00
if [ " $framework " = "netcoreapp3.1" ] ; then
2019-10-14 21:42:30 +00:00
cp $folder /Mono.Posix.NETStandard.* $folder /Radarr.Update
cp $folder /libMonoPosixHelper.* $folder /Radarr.Update
fi
2015-07-04 12:10:11 +00:00
2019-09-02 21:03:41 +00:00
ProgressEnd 'Creating MacOS Package'
2015-07-04 12:10:11 +00:00
}
2019-09-02 21:03:41 +00:00
PackageMacOSApp( )
2015-07-04 12:10:11 +00:00
{
2019-10-14 20:20:59 +00:00
local framework = " $1 "
ProgressStart " Creating macOS App Package for $framework "
2019-09-02 21:03:41 +00:00
2019-10-14 20:20:59 +00:00
local folder = $artifactsFolder /macos-app/$framework
2019-09-02 21:03:41 +00:00
2019-10-14 20:20:59 +00:00
rm -rf $folder
mkdir -p $folder
2019-10-14 20:21:00 +00:00
cp -r macOS/Radarr.app $folder
2019-10-14 20:20:59 +00:00
mkdir -p $folder /Radarr.app/Contents/MacOS
2019-09-02 21:03:41 +00:00
echo "Copying Binaries"
2019-10-14 20:20:59 +00:00
cp -r $artifactsFolder /macos/$framework /Radarr/* $folder /Radarr.app/Contents/MacOS
2015-07-04 12:10:11 +00:00
2019-09-02 21:03:41 +00:00
echo "Removing Update Folder"
2019-10-14 20:20:59 +00:00
rm -r $folder /Radarr.app/Contents/MacOS/Radarr.Update
2019-09-02 21:03:41 +00:00
ProgressEnd 'Creating macOS App Package'
2015-07-04 12:10:11 +00:00
}
2019-10-14 20:20:59 +00:00
PackageWindows( )
2015-07-04 12:10:11 +00:00
{
2019-10-14 20:20:59 +00:00
local framework = " $1 "
ProgressStart " Creating Windows Package for $framework "
local folder = $artifactsFolder /windows/$framework /Radarr
2019-10-14 20:21:00 +00:00
PackageFiles " $folder " " $framework " "win-x64"
2019-09-02 21:03:41 +00:00
2018-11-23 07:05:47 +00:00
echo "Removing Radarr.Mono"
2019-10-14 20:20:59 +00:00
rm -f $folder /Radarr.Mono.*
2019-10-14 21:42:30 +00:00
rm -f $folder /Mono.Posix.NETStandard.*
rm -f $folder /libMonoPosixHelper.*
2015-07-04 12:10:11 +00:00
2018-11-23 07:05:47 +00:00
echo "Adding Radarr.Windows to UpdatePackage"
2019-10-14 20:20:59 +00:00
cp $folder /Radarr.Windows.* $folder /Radarr.Update
2019-09-02 21:03:41 +00:00
2019-10-14 20:20:59 +00:00
ProgressEnd 'Creating Windows Package'
2015-07-04 12:10:11 +00:00
}
2020-02-25 22:10:40 +00:00
Package( )
{
local framework = " $1 "
local runtime = " $2 "
local SPLIT
IFS = '-' read -ra SPLIT <<< " $runtime "
case " ${ SPLIT [0] } " in
linux)
PackageLinux " $framework " " $runtime "
; ;
win)
PackageWindows " $framework "
; ;
osx)
PackageMacOS " $framework "
PackageMacOSApp " $framework "
; ;
esac
}
PackageTests( )
{
local framework = " $1 "
local runtime = " $2 "
cp test.sh " $testPackageFolder / $framework / $runtime /publish "
rm -f $testPackageFolder /$framework /$runtime /*.log.config
# geckodriver.exe isn't copied by dotnet publish
if [ " $runtime " = "win-x64" ] ;
then
curl -Lso gecko.zip "https://github.com/mozilla/geckodriver/releases/download/v0.26.0/geckodriver-v0.26.0-win64.zip"
unzip -o gecko.zip
cp geckodriver.exe " $testPackageFolder / $framework /win-x64/publish "
fi
ProgressEnd 'Creating Test Package'
}
2015-07-04 12:10:11 +00:00
# Use mono or .net depending on OS
case " $( uname -s) " in
CYGWIN*| MINGW32*| MINGW64*| MSYS*)
# on windows, use dotnet
2019-10-14 20:20:59 +00:00
os = "windows"
2015-07-04 12:10:11 +00:00
; ;
*)
# otherwise use mono
2019-10-14 20:20:59 +00:00
os = "posix"
2015-07-04 12:10:11 +00:00
; ;
esac
2019-09-02 21:03:41 +00:00
POSITIONAL = ( )
2019-10-14 20:21:00 +00:00
if [ $# -eq 0 ] ; then
echo "No arguments provided, building everything"
BACKEND = YES
FRONTEND = YES
PACKAGES = YES
LINT = YES
fi
2019-09-02 21:03:41 +00:00
while [ [ $# -gt 0 ] ]
do
key = " $1 "
2018-02-12 16:37:11 +00:00
2019-09-02 21:03:41 +00:00
case $key in
2019-10-14 20:21:00 +00:00
--backend)
BACKEND = YES
shift # past argument
; ;
2020-02-25 22:10:40 +00:00
-r| --runtime)
RID = " $2 "
shift # past argument
shift # past value
; ;
-f| --framework)
FRAMEWORK = " $2 "
shift # past argument
shift # past value
; ;
2019-10-14 20:21:00 +00:00
--frontend)
FRONTEND = YES
shift # past argument
; ;
--packages)
PACKAGES = YES
2019-09-02 21:03:41 +00:00
shift # past argument
; ;
2019-10-14 20:21:00 +00:00
--lint)
LINT = YES
2019-09-02 21:03:41 +00:00
shift # past argument
; ;
2019-10-14 20:21:00 +00:00
--all)
BACKEND = YES
FRONTEND = YES
PACKAGES = YES
LINT = YES
2019-09-02 21:03:41 +00:00
shift # past argument
; ;
*) # unknown option
POSITIONAL += ( " $1 " ) # save it in an array for later
shift # past argument
; ;
esac
done
set -- " ${ POSITIONAL [@] } " # restore positional parameters
2018-02-12 16:31:18 +00:00
2019-10-14 20:21:00 +00:00
if [ " $BACKEND " = "YES" ] ;
2019-09-02 21:03:41 +00:00
then
UpdateVersionNumber
Build
2020-02-25 22:10:40 +00:00
if [ [ -z " $RID " || -z " $FRAMEWORK " ] ] ;
then
PackageTests "netcoreapp3.1" "win-x64"
PackageTests "netcoreapp3.1" "linux-x64"
PackageTests "netcoreapp3.1" "osx-x64"
PackageTests "net462" "linux-x64"
else
PackageTests " $FRAMEWORK " " $RID "
fi
2018-02-12 16:31:18 +00:00
fi
2019-10-14 20:21:00 +00:00
if [ " $FRONTEND " = "YES" ] ;
then
YarnInstall
RunGulp
fi
if [ " $LINT " = "YES" ] ;
2019-09-02 21:03:41 +00:00
then
2019-10-14 20:21:00 +00:00
if [ -z " $FRONTEND " ] ;
then
YarnInstall
fi
LintUI
2018-02-12 16:31:18 +00:00
fi
2019-10-14 20:21:00 +00:00
if [ " $PACKAGES " = "YES" ] ;
2019-09-02 21:03:41 +00:00
then
2019-10-14 20:21:00 +00:00
UpdateVersionNumber
2020-02-25 22:10:40 +00:00
if [ [ -z " $RID " || -z " $FRAMEWORK " ] ] ;
then
Package "netcoreapp3.1" "win-x64"
Package "netcoreapp3.1" "linux-x64"
Package "netcoreapp3.1" "linux-arm64"
Package "netcoreapp3.1" "linux-arm"
Package "netcoreapp3.1" "osx-x64"
Package "net462" "linux-x64"
else
Package " $FRAMEWORK " " $RID "
fi
2018-02-12 16:31:18 +00:00
fi