2015-07-04 12:10:11 +00:00
|
|
|
#! /bin/bash
|
2018-06-08 01:13:58 +00:00
|
|
|
msBuildVersion='15.0'
|
2015-07-04 12:10:11 +00:00
|
|
|
outputFolder='./_output'
|
2017-12-31 18:53:16 +00:00
|
|
|
outputFolderLinux='./_output_linux'
|
|
|
|
outputFolderMacOS='./_output_macos'
|
|
|
|
outputFolderMacOSApp='./_output_macos_app'
|
2015-07-04 12:10:11 +00:00
|
|
|
testPackageFolder='./_tests/'
|
2016-01-15 08:27:59 +00:00
|
|
|
testSearchPattern='*.Test/bin/x86/Release'
|
2015-07-04 12:10:11 +00:00
|
|
|
sourceFolder='./src'
|
2017-10-15 04:07:56 +00:00
|
|
|
slnFile=$sourceFolder/Lidarr.sln
|
|
|
|
updateFolder=$outputFolder/Lidarr.Update
|
2017-12-31 18:53:16 +00:00
|
|
|
updateFolderMono=$outputFolderLinux/Lidarr.Update
|
|
|
|
|
|
|
|
#Artifact variables
|
|
|
|
artifactsFolder="./_artifacts";
|
|
|
|
artifactsFolderWindows=$artifactsFolder/windows
|
|
|
|
artifactsFolderLinux=$artifactsFolder/linux
|
|
|
|
artifactsFolderMacOS=$artifactsFolder/macos
|
|
|
|
artifactsFolderMacOSApp=$artifactsFolder/macos-app
|
2015-07-04 12:10:11 +00:00
|
|
|
|
2016-01-17 00:17:36 +00:00
|
|
|
nuget='tools/nuget/nuget.exe';
|
2018-06-08 01:13:58 +00:00
|
|
|
vswhere='tools/vswhere/vswhere.exe';
|
|
|
|
|
2015-07-04 12:10:11 +00:00
|
|
|
CheckExitCode()
|
|
|
|
{
|
|
|
|
"$@"
|
|
|
|
local status=$?
|
|
|
|
if [ $status -ne 0 ]; then
|
|
|
|
echo "error with $1" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
return $status
|
|
|
|
}
|
|
|
|
|
2017-12-31 18:53:16 +00:00
|
|
|
ProgressStart()
|
|
|
|
{
|
|
|
|
echo "Start '$1'"
|
|
|
|
}
|
|
|
|
|
|
|
|
ProgressEnd()
|
|
|
|
{
|
|
|
|
echo "Finish '$1'"
|
|
|
|
}
|
|
|
|
|
2015-07-04 12:10:11 +00:00
|
|
|
CleanFolder()
|
|
|
|
{
|
|
|
|
local path=$1
|
|
|
|
local keepConfigFiles=$2
|
|
|
|
|
|
|
|
find $path -name "*.transform" -exec rm "{}" \;
|
|
|
|
|
|
|
|
if [ $keepConfigFiles != true ] ; then
|
|
|
|
find $path -name "*.dll.config" -exec rm "{}" \;
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Removing FluentValidation.Resources files"
|
|
|
|
find $path -name "FluentValidation.resources.dll" -exec rm "{}" \;
|
|
|
|
find $path -name "App.config" -exec rm "{}" \;
|
|
|
|
|
|
|
|
echo "Removing vshost files"
|
|
|
|
find $path -name "*.vshost.exe" -exec rm "{}" \;
|
|
|
|
|
2016-01-16 05:49:09 +00:00
|
|
|
echo "Removing dylib files"
|
|
|
|
find $path -name "*.dylib" -exec rm "{}" \;
|
|
|
|
|
2015-07-04 12:10:11 +00:00
|
|
|
echo "Removing Empty folders"
|
|
|
|
find $path -depth -empty -type d -exec rm -r "{}" \;
|
|
|
|
}
|
|
|
|
|
|
|
|
BuildWithMSBuild()
|
|
|
|
{
|
2018-06-08 01:13:58 +00:00
|
|
|
installationPath=`$vswhere -latest -products \* -requires Microsoft.Component.MSBuild -property installationPath`
|
|
|
|
installationPath=${installationPath/C:\\/\/c\/}
|
|
|
|
installationPath=${installationPath//\\/\/}
|
|
|
|
msBuild="$installationPath/MSBuild/$msBuildVersion/Bin"
|
|
|
|
echo $msBuild
|
|
|
|
|
2015-07-04 12:10:11 +00:00
|
|
|
export PATH=$msBuild:$PATH
|
2018-06-08 01:13:58 +00:00
|
|
|
CheckExitCode MSBuild.exe $slnFile //p:Configuration=Release //p:Platform=x86 //t:Clean //m
|
2016-01-17 00:36:40 +00:00
|
|
|
$nuget restore $slnFile
|
|
|
|
CheckExitCode MSBuild.exe $slnFile //p:Configuration=Release //p:Platform=x86 //t:Build //m //p:AllowedReferenceRelatedFileExtensions=.pdb
|
2015-07-04 12:10:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BuildWithXbuild()
|
|
|
|
{
|
|
|
|
export MONO_IOMAP=case
|
2018-06-08 01:13:58 +00:00
|
|
|
CheckExitCode msbuild /t:Clean $slnFile
|
2016-01-17 00:36:40 +00:00
|
|
|
mono $nuget restore $slnFile
|
2018-06-08 01:13:58 +00:00
|
|
|
CheckExitCode msbuild /p:Configuration=Release /p:Platform=x86 /t:Build /p:AllowedReferenceRelatedFileExtensions=.pdb $slnFile
|
2015-07-04 12:10:11 +00:00
|
|
|
}
|
|
|
|
|
2017-10-07 06:21:06 +00:00
|
|
|
LintUI()
|
|
|
|
{
|
|
|
|
ProgressStart 'ESLint'
|
2017-12-17 05:49:47 +00:00
|
|
|
CheckExitCode yarn eslint
|
2017-10-07 06:21:06 +00:00
|
|
|
ProgressEnd 'ESLint'
|
|
|
|
|
|
|
|
ProgressStart 'Stylelint'
|
|
|
|
CheckExitCode yarn stylelint
|
|
|
|
ProgressEnd 'Stylelint'
|
|
|
|
}
|
|
|
|
|
2015-07-04 12:10:11 +00:00
|
|
|
Build()
|
|
|
|
{
|
2017-12-31 18:53:16 +00:00
|
|
|
ProgressStart 'Build'
|
2015-07-04 12:10:11 +00:00
|
|
|
|
|
|
|
rm -rf $outputFolder
|
|
|
|
|
|
|
|
if [ $runtime = "dotnet" ] ; then
|
|
|
|
BuildWithMSBuild
|
|
|
|
else
|
|
|
|
BuildWithXbuild
|
|
|
|
fi
|
2016-01-16 06:06:33 +00:00
|
|
|
|
2015-07-04 12:10:11 +00:00
|
|
|
CleanFolder $outputFolder false
|
2016-01-16 06:06:33 +00:00
|
|
|
|
2015-07-04 12:10:11 +00:00
|
|
|
echo "Removing Mono.Posix.dll"
|
|
|
|
rm $outputFolder/Mono.Posix.dll
|
|
|
|
|
2017-12-31 18:53:16 +00:00
|
|
|
ProgressEnd 'Build'
|
2015-07-04 12:10:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
RunGulp()
|
|
|
|
{
|
2017-12-31 18:53:16 +00:00
|
|
|
ProgressStart 'yarn install'
|
2017-10-07 06:21:06 +00:00
|
|
|
yarn install
|
|
|
|
#npm-cache install npm || CheckExitCode npm install --no-optional --no-bin-links
|
2017-12-31 18:53:16 +00:00
|
|
|
ProgressEnd 'yarn install'
|
2015-07-04 12:10:11 +00:00
|
|
|
|
2017-10-07 06:47:28 +00:00
|
|
|
LintUI
|
|
|
|
|
2017-10-07 06:21:06 +00:00
|
|
|
ProgressStart 'Running gulp'
|
2018-01-24 04:22:01 +00:00
|
|
|
CheckExitCode yarn run build --production
|
2017-10-07 06:21:06 +00:00
|
|
|
ProgressEnd 'Running gulp'
|
2015-07-04 12:10:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CreateMdbs()
|
|
|
|
{
|
|
|
|
local path=$1
|
|
|
|
if [ $runtime = "dotnet" ] ; then
|
2016-01-16 05:49:09 +00:00
|
|
|
local pdbFiles=( $(find $path -name "*.pdb") )
|
|
|
|
for filename in "${pdbFiles[@]}"
|
|
|
|
do
|
|
|
|
if [ -e ${filename%.pdb}.dll ] ; then
|
|
|
|
tools/pdb2mdb/pdb2mdb.exe ${filename%.pdb}.dll
|
|
|
|
fi
|
|
|
|
if [ -e ${filename%.pdb}.exe ] ; then
|
|
|
|
tools/pdb2mdb/pdb2mdb.exe ${filename%.pdb}.exe
|
|
|
|
fi
|
|
|
|
done
|
2015-07-04 12:10:11 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
PackageMono()
|
|
|
|
{
|
2017-12-31 18:53:16 +00:00
|
|
|
ProgressStart 'Creating Mono Package'
|
|
|
|
|
|
|
|
rm -rf $outputFolderLinux
|
|
|
|
cp -r $outputFolder $outputFolderLinux
|
2015-07-04 12:10:11 +00:00
|
|
|
|
|
|
|
echo "Creating MDBs"
|
2017-12-31 18:53:16 +00:00
|
|
|
CreateMdbs $outputFolderLinux
|
2015-07-04 12:10:11 +00:00
|
|
|
|
|
|
|
echo "Removing PDBs"
|
2017-12-31 18:53:16 +00:00
|
|
|
find $outputFolderLinux -name "*.pdb" -exec rm "{}" \;
|
2015-07-04 12:10:11 +00:00
|
|
|
|
|
|
|
echo "Removing Service helpers"
|
2017-12-31 18:53:16 +00:00
|
|
|
rm -f $outputFolderLinux/ServiceUninstall.*
|
|
|
|
rm -f $outputFolderLinux/ServiceInstall.*
|
2015-07-04 12:10:11 +00:00
|
|
|
|
|
|
|
echo "Removing native windows binaries Sqlite, MediaInfo"
|
2017-12-31 18:53:16 +00:00
|
|
|
rm -f $outputFolderLinux/sqlite3.*
|
|
|
|
rm -f $outputFolderLinux/MediaInfo.*
|
2015-07-04 12:10:11 +00:00
|
|
|
|
2017-10-25 02:31:37 +00:00
|
|
|
echo "Adding Lidarr.Core.dll.config (for dllmap)"
|
2017-12-31 18:53:16 +00:00
|
|
|
cp $sourceFolder/NzbDrone.Core/Lidarr.Core.dll.config $outputFolderLinux
|
2015-07-04 12:10:11 +00:00
|
|
|
|
|
|
|
echo "Adding CurlSharp.dll.config (for dllmap)"
|
2017-12-31 18:53:16 +00:00
|
|
|
cp $sourceFolder/NzbDrone.Common/CurlSharp.dll.config $outputFolderLinux
|
2015-07-04 12:10:11 +00:00
|
|
|
|
2017-07-07 20:37:36 +00:00
|
|
|
echo "Renaming Lidarr.Console.exe to Lidarr.exe"
|
2017-12-31 18:53:16 +00:00
|
|
|
rm $outputFolderLinux/Lidarr.exe*
|
|
|
|
for file in $outputFolderLinux/Lidarr.Console.exe*; do
|
2015-07-04 12:10:11 +00:00
|
|
|
mv "$file" "${file//.Console/}"
|
|
|
|
done
|
|
|
|
|
2017-10-25 02:31:37 +00:00
|
|
|
echo "Removing Lidarr.Windows"
|
2017-12-31 18:53:16 +00:00
|
|
|
rm $outputFolderLinux/Lidarr.Windows.*
|
2015-07-04 12:10:11 +00:00
|
|
|
|
2017-10-25 02:31:37 +00:00
|
|
|
echo "Adding Lidarr.Mono to UpdatePackage"
|
2017-12-31 18:53:16 +00:00
|
|
|
cp $outputFolderLinux/Lidarr.Mono.* $updateFolderMono
|
2016-01-16 06:06:33 +00:00
|
|
|
|
2017-12-31 18:53:16 +00:00
|
|
|
ProgressEnd 'Creating Mono Package'
|
2015-07-04 12:10:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PackageOsx()
|
|
|
|
{
|
2017-12-31 18:53:16 +00:00
|
|
|
ProgressStart 'Creating MacOS Package'
|
|
|
|
|
|
|
|
rm -rf $outputFolderMacOS
|
|
|
|
cp -r $outputFolderLinux $outputFolderMacOS
|
2015-07-04 12:10:11 +00:00
|
|
|
|
|
|
|
echo "Adding sqlite dylibs"
|
2017-12-31 18:53:16 +00:00
|
|
|
cp $sourceFolder/Libraries/Sqlite/*.dylib $outputFolderMacOS
|
2015-07-04 12:10:11 +00:00
|
|
|
|
|
|
|
echo "Adding MediaInfo dylib"
|
2017-12-31 18:53:16 +00:00
|
|
|
cp $sourceFolder/Libraries/MediaInfo/*.dylib $outputFolderMacOS
|
2015-07-04 12:10:11 +00:00
|
|
|
|
|
|
|
echo "Adding Startup script"
|
2017-12-31 18:53:16 +00:00
|
|
|
cp ./osx/Lidarr $outputFolderMacOS
|
2015-07-04 12:10:11 +00:00
|
|
|
|
2017-12-31 18:53:16 +00:00
|
|
|
ProgressEnd 'Creating MacOS Package'
|
2015-07-04 12:10:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PackageOsxApp()
|
|
|
|
{
|
2017-12-31 18:53:16 +00:00
|
|
|
ProgressStart 'Creating MacOS App Package'
|
2015-07-04 12:10:11 +00:00
|
|
|
|
2017-12-31 18:53:16 +00:00
|
|
|
rm -rf $outputFolderMacOSApp
|
|
|
|
mkdir $outputFolderMacOSApp
|
2015-07-04 12:10:11 +00:00
|
|
|
|
2017-12-31 18:53:16 +00:00
|
|
|
cp -r ./osx/Lidarr.app $outputFolderMacOSApp
|
|
|
|
cp -r $outputFolderMacOS $outputFolderMacOSApp/Lidarr.app/Contents/MacOS
|
|
|
|
|
|
|
|
ProgressEnd 'Creating MacOS App Package'
|
2015-07-04 12:10:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PackageTests()
|
|
|
|
{
|
2017-12-31 18:53:16 +00:00
|
|
|
ProgressStart 'Creating Test Package'
|
|
|
|
|
2015-07-04 12:10:11 +00:00
|
|
|
rm -rf $testPackageFolder
|
|
|
|
mkdir $testPackageFolder
|
|
|
|
|
2016-01-15 08:27:59 +00:00
|
|
|
find $sourceFolder -path $testSearchPattern -exec cp -r -u -T "{}" $testPackageFolder \;
|
2015-07-04 12:10:11 +00:00
|
|
|
|
|
|
|
if [ $runtime = "dotnet" ] ; then
|
2017-12-31 18:53:16 +00:00
|
|
|
$nuget install NUnit.ConsoleRunner -Version 3.7.0 -Output $testPackageFolder
|
2015-07-04 12:10:11 +00:00
|
|
|
else
|
2017-12-31 18:53:16 +00:00
|
|
|
mono $nuget install NUnit.ConsoleRunner -Version 3.7.0 -Output $testPackageFolder
|
2015-07-04 12:10:11 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
cp $outputFolder/*.dll $testPackageFolder
|
|
|
|
cp ./*.sh $testPackageFolder
|
|
|
|
|
|
|
|
echo "Creating MDBs for tests"
|
|
|
|
CreateMdbs $testPackageFolder
|
|
|
|
|
|
|
|
rm -f $testPackageFolder/*.log.config
|
|
|
|
|
|
|
|
CleanFolder $testPackageFolder true
|
|
|
|
|
2017-10-25 02:31:37 +00:00
|
|
|
echo "Adding Lidarr.Core.dll.config (for dllmap)"
|
|
|
|
cp $sourceFolder/NzbDrone.Core/Lidarr.Core.dll.config $testPackageFolder
|
2015-07-04 12:10:11 +00:00
|
|
|
|
|
|
|
echo "Adding CurlSharp.dll.config (for dllmap)"
|
|
|
|
cp $sourceFolder/NzbDrone.Common/CurlSharp.dll.config $testPackageFolder
|
|
|
|
|
2015-08-01 12:54:20 +00:00
|
|
|
echo "Copying CurlSharp libraries"
|
|
|
|
cp $sourceFolder/ExternalModules/CurlSharp/libs/i386/* $testPackageFolder
|
|
|
|
|
2017-12-31 18:53:16 +00:00
|
|
|
ProgressEnd 'Creating Test Package'
|
2015-07-04 12:10:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CleanupWindowsPackage()
|
|
|
|
{
|
2017-12-31 18:53:16 +00:00
|
|
|
ProgressStart 'Cleaning Windows Package'
|
|
|
|
|
2017-10-25 02:31:37 +00:00
|
|
|
echo "Removing Lidarr.Mono"
|
|
|
|
rm -f $outputFolder/Lidarr.Mono.*
|
2015-07-04 12:10:11 +00:00
|
|
|
|
2017-10-25 02:31:37 +00:00
|
|
|
echo "Adding Lidarr.Windows to UpdatePackage"
|
|
|
|
cp $outputFolder/Lidarr.Windows.* $updateFolder
|
2017-12-31 18:53:16 +00:00
|
|
|
|
|
|
|
ProgressEnd 'Cleaning Windows Package'
|
|
|
|
}
|
|
|
|
|
|
|
|
PackageArtifacts()
|
|
|
|
{
|
|
|
|
echo "Creating Artifact Directories"
|
|
|
|
|
|
|
|
rm -rf $artifactsFolder
|
|
|
|
mkdir $artifactsFolder
|
|
|
|
|
|
|
|
mkdir $artifactsFolderWindows
|
|
|
|
mkdir $artifactsFolderMacOS
|
|
|
|
mkdir $artifactsFolderLinux
|
|
|
|
mkdir $artifactsFolderWindows/Lidarr
|
|
|
|
mkdir $artifactsFolderMacOS/Lidarr
|
|
|
|
mkdir $artifactsFolderLinux/Lidarr
|
|
|
|
mkdir $artifactsFolderMacOSApp
|
|
|
|
|
|
|
|
cp -r $outputFolder/* $artifactsFolderWindows/Lidarr
|
|
|
|
cp -r $outputFolderMacOSApp/* $artifactsFolderMacOSApp
|
|
|
|
cp -r $outputFolderMacOS/* $artifactsFolderMacOS/Lidarr
|
|
|
|
cp -r $outputFolderLinux/* $artifactsFolderLinux/Lidarr
|
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
|
|
|
|
runtime="dotnet"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# otherwise use mono
|
|
|
|
runtime="mono"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
Build
|
|
|
|
RunGulp
|
|
|
|
PackageMono
|
|
|
|
PackageOsx
|
|
|
|
PackageOsxApp
|
|
|
|
PackageTests
|
|
|
|
CleanupWindowsPackage
|
2017-12-31 18:53:16 +00:00
|
|
|
PackageArtifacts
|