| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 | 
							- $scriptPath = split-path -parent $MyInvocation.MyCommand.Definition
 
- $configuration = $Env:BuildConfiguration
 
- $isCloudBuild = Test-Path -Path env:\TF_BUILD
 
- $outputLocation = Join-Path $scriptPath "testResults"
 
- $openCoverPath = ".\packages\OpenCover\tools\OpenCover.Console.exe"
 
- $xUnitConsolePath = ".\packages\xunit.runner.console\tools\net452\xunit.console.exe"
 
- $rootPath = (Resolve-Path .).Path
 
- $artifacts = Join-Path $rootPath "artifacts"
 
- $signClientSettings = Join-Path (Join-Path (Get-Item $scriptPath).Parent.Parent.FullName "scripts") "SignClientSettings.json"
 
- $hasSignClientSecret = !([string]::IsNullOrEmpty($env:SignClientSecret))
 
- $signClientAppPath = ".\packages\SignClient\tools\netcoreapp2.0\SignClient.dll"
 
- #remove any old coverage file
 
- md -Force $outputLocation | Out-Null
 
- $outputPath = (Resolve-Path $outputLocation).Path
 
- $outputFile = Join-Path $outputPath -childpath 'coverage-rx.xml'
 
- Remove-Item $outputPath -Force -Recurse
 
- md -Force $outputLocation | Out-Null
 
- if (!(Test-Path .\nuget.exe)) {
 
-     wget "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe" -outfile .\nuget.exe
 
- }
 
- # get tools
 
- .\nuget.exe install -excludeversion SignClient -Version 0.9.1 -outputdirectory packages
 
- .\nuget.exe install -excludeversion JetBrains.dotCover.CommandLineTools -version 2017.3.5 -outputdirectory packages
 
- .\nuget.exe install -excludeversion Nerdbank.GitVersioning -Version 2.1.23 -outputdirectory packages
 
- .\nuget.exe install -excludeversion xunit.runner.console -outputdirectory packages
 
- #.\nuget.exe install -excludeversion OpenCover -Version 4.6.519 -outputdirectory packages
 
- .\nuget.exe install -excludeversion ReportGenerator -outputdirectory packages
 
- #.\nuget.exe install -excludeversion coveralls.io -outputdirectory packages
 
- .\nuget.exe install -excludeversion coveralls.io.dotcover -outputdirectory packages
 
- #update version
 
- $versionObj = .\packages\Nerdbank.GitVersioning\tools\get-version.ps1
 
- $packageSemVer = $versionObj.NuGetPackageVersion
 
- Write-Host "Building $packageSemVer" -Foreground Green
 
- New-Item -ItemType Directory -Force -Path $artifacts
 
- Write-Host "Building $scriptPath\System.Reactive.sln" -Foreground Green
 
- msbuild "$scriptPath\System.Reactive.sln" /restore /t:build /m /p:Configuration=$configuration /p:CreatePackage=true /p:NoPackageAnalysis=true 
 
- if ($LastExitCode -ne 0) { 
 
-         Write-Host "Error with build" -Foreground Red
 
-         if($isCloudBuild) {
 
-           $host.SetShouldExit($LastExitCode)
 
-           exit $LastExitCode
 
-         }  
 
- }
 
- Write-Host "Building Compat Package" -Foreground Green
 
- .\nuget.exe pack "$scriptPath\facades\System.Reactive.Compatibility.nuspec" -Version $packageSemVer -MinClientVersion 2.12 -nopackageanalysis -outputdirectory "$artifacts" 
 
- if($hasSignClientSecret) {
 
-   Write-Host "Signing Packages" -Foreground Green
 
-   $nupgks = ls $artifacts\*React*.nupkg | Select -ExpandProperty FullName
 
-   foreach ($nupkg in $nupgks) {
 
-     Write-Host "Submitting $nupkg for signing"
 
-     dotnet $signClientAppPath 'sign' -c $signClientSettings -i $nupkg -r $env:SignClientUser -s $env:SignClientSecret -n 'Rx.NET' -d 'Reactive Extensions for .NET' -u 'http://reactivex.io/' 
 
-     if ($LastExitCode -ne 0) { 
 
-         Write-Host "Error signing $nupkg" -Foreground Red
 
-         if($isCloudBuild) {
 
-           $host.SetShouldExit($LastExitCode)
 
-           exit $LastExitCode
 
-         }  
 
-     }
 
-     Write-Host "Finished signing $nupkg"
 
-   }
 
- } else {
 
-   Write-Host "Client Secret not found, not signing packages"
 
- }
 
- Write-Host "Running tests" -Foreground Green
 
- $testDirectory = Join-Path $scriptPath "tests\Tests.System.Reactive"
 
- # OpenCover isn't working currently. So run tests on CI and coverage with JetBrains 
 
- $dotnet = "$env:ProgramFiles\dotnet\dotnet.exe"
 
- .\packages\JetBrains.dotCover.CommandLineTools\tools\dotCover.exe analyse /targetexecutable="$dotnet" /targetworkingdir="$testDirectory" /targetarguments="test -c $configuration --no-build --no-restore --filter `"SkipCI!=true`"" /Filters="+:module=System.Reactive;+:module=Microsoft.Reactive.Testing;+:module=System.Reactive.Observable.Aliases;-:type=Xunit*" /DisableDefaultFilters /ReturnTargetExitCode /AttributeFilters="System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute" /Output="$outputFile" /ReportType=DetailedXML /HideAutoProperties
 
- #dotnet test $testDirectory --no-build --no-restore -c "Release" --filter "SkipCI!=true"
 
- if ($LastExitCode -ne 0) { 
 
- 	Write-Host "Error with tests" -Foreground Red
 
- 	if($isCloudBuild) {
 
- 	  $host.SetShouldExit($LastExitCode)
 
- 	  exit $LastExitCode
 
- 	}  
 
- }
 
- # Either display or publish the results
 
- if ($isCloudBuild -eq 'True')
 
- {
 
-   .\packages\coveralls.io.dotcover\tools\coveralls.net.exe -f -p DotCover "$outputFile"
 
- }
 
- else
 
- {
 
-   .\packages\ReportGenerator\tools\ReportGenerator.exe -reports:"$outputFile" -targetdir:"$outputPath"
 
-   &"$outPutPath/index.htm"
 
- }
 
 
  |