|
1 |
| -pr: |
2 |
| - branches: |
3 |
| - include: |
4 |
| - - master |
5 |
| - - search-preview |
6 |
| - - BuildToolsForSdk |
| 1 | +# pr: |
| 2 | +# branches: |
| 3 | +# include: |
| 4 | +# - master |
| 5 | +# - search-preview |
| 6 | +# - BuildToolsForSdk |
7 | 7 |
|
8 |
| -variables: |
9 |
| - DotNetCoreVersion: '2.2.202' |
10 |
| - #DotNetCoreVersion: '2.1.503' |
| 8 | +# variables: |
| 9 | +# DotNetCoreVersion: '2.2.202' |
| 10 | +# #DotNetCoreVersion: '2.1.503' |
11 | 11 |
|
12 |
| -jobs: |
13 |
| - - job: Windows_Build |
14 |
| - pool: |
15 |
| - vmImage: 'VS2017-Win2016' |
16 |
| - variables: |
17 |
| - IgnoreBuildTokens: 'Microsoft.Rest.ClientRuntime.Tracing.Tests Microsoft.Azure.Services.AppAuthentication.IntegrationTests KeyVault\dataPlane LocationBasedServices Az.Auth.Tests Search Batch.FileStaging.Tests Azure.Batch.IntegrationTests Azure.Batch.ProtocolTests Batch\Support\FileConventions AzureBatchFileConventions.IntegrationTests Batch\DataPlane\Azure.Batch.Unit.Tests Batch\DataPlane\Tools\ConfigureAwaitAnalyzer\ConfigureAwaitAnalyzer.Tests ContainerService\ContainerService.Tests Consumption\Consumption.Tests Billing\Billing.Tests ApplicationInsights\Management\ApplicationInsights.Tests Batch\Management\Management.Batch.Tests SecurityCenter\SecurityCenter.Tests AzureStack\Admin\FabricAdmin\Fabric.Admin.Tests IotHub\IotHub.Tests Monitor\Monitor.Tests Compute\Compute.Tests Reservations\Reservations.Tests NetApp\NetApp.Tests ContainerRegistry\ContainerRegistry.Tests OperationalInsights\Management\OperationalInsights.Test Subscription\Subscription.Tests WebSites\WebSites.Tests DataLake.Store EventGrid.Tests StorageSync.Tests ServiceFabric\ServiceFabric.Test AppAuthentication\Azure.Services.AppAuthentication.Unit.Tests Graph.RBAC\Graph.RBAC.Tests' |
18 |
| - LoggingArgs: '/v:m /clp:ShowtimeStamp /flp:LogFile=msbuild.normal;Verbosity=normal /flp1:Summary;Verbosity=minimal;LogFile=msbuild.sum /flp2:warningsonly;logfile=msbuild.wrn /flp3:errorsonly;logfile=msbuild.err' |
| 12 | +# jobs: |
| 13 | +# - job: Windows_Build |
| 14 | +# pool: |
| 15 | +# vmImage: 'VS2017-Win2016' |
| 16 | +# variables: |
| 17 | +# LoggingArgs: '/clp:ShowtimeStamp /flp:LogFile=msbuild.normal;Verbosity=normal /flp1:Summary;Verbosity=minimal;LogFile=msbuild.sum /flp2:warningsonly;logfile=msbuild.wrn /flp3:errorsonly;logfile=msbuild.err' |
| 18 | +# RPScopeArgs: '/p:PullRequestNumber=$(System.PullRequest.PullRequestNumber) /p:RepoHtmlUrl=$(Build.Repository.Uri) /p:RepoId=$(Build.Repository.ID)' |
19 | 19 |
|
20 |
| - steps: |
21 |
| - - task: MSBuild@1 |
22 |
| - inputs: |
23 |
| - solution: build.proj |
24 |
| - msbuildArguments: /t:RunTests $(LoggingArgs) |
25 |
| - displayName: 'Build and Run tests' |
26 |
| - - task: PublishTestResults@2 |
27 |
| - condition: succeededOrFailed() |
28 |
| - inputs: |
29 |
| - testResultsFiles: 'TestResults/**/*.trx' |
30 |
| - testRunTitle: 'Windows Test Results' |
31 |
| - testResultsFormat: 'VSTest' |
32 |
| - mergeTestResults: true |
| 20 | +# steps: |
| 21 | +# - task: MSBuild@1 |
| 22 | +# inputs: |
| 23 | +# solution: mgmt.proj |
| 24 | +# msbuildArguments: /t:RunTests $(LoggingArgs) $(RPScopeArgs) /v:n |
| 25 | +# displayName: 'Build and Run tests' |
| 26 | +# - task: PublishTestResults@2 |
| 27 | +# condition: succeededOrFailed() |
| 28 | +# inputs: |
| 29 | +# testResultsFiles: 'TestResults/**/*.trx' |
| 30 | +# testRunTitle: 'Windows Test Results' |
| 31 | +# testResultsFormat: 'VSTest' |
| 32 | +# mergeTestResults: true |
33 | 33 |
|
34 |
| - - job: Ubuntu_Build |
35 |
| - pool: |
36 |
| - vmImage: 'ubuntu-16.04' |
| 34 | +# - job: Ubuntu_Build |
| 35 | +# pool: |
| 36 | +# vmImage: 'ubuntu-16.04' |
37 | 37 |
|
38 |
| - steps: |
39 |
| - - task: DotNetCoreInstaller@0 |
40 |
| - displayName: 'Use .NET Core sdk $(DotNetCoreVersion)' |
41 |
| - inputs: |
42 |
| - version: '$(DotNetCoreVersion)' |
| 38 | +# steps: |
| 39 | +# - task: DotNetCoreInstaller@0 |
| 40 | +# displayName: 'Use .NET Core sdk $(DotNetCoreVersion)' |
| 41 | +# inputs: |
| 42 | +# version: '$(DotNetCoreVersion)' |
43 | 43 |
|
44 |
| - - script: dotnet msbuild build.proj /t:RunTests $(LoggingArgs) |
45 |
| - displayName: 'Ubuntu Build and Run tests' |
46 |
| - - task: PublishTestResults@2 |
47 |
| - condition: succeededOrFailed() |
48 |
| - inputs: |
49 |
| - testResultsFiles: '**/*.trx' |
50 |
| - testRunTitle: 'Ubuntu Test Results' |
51 |
| - testResultsFormat: 'VSTest' |
52 |
| - mergeTestResults: true |
| 44 | +# - script: dotnet msbuild mgmt.proj /t:RunTests $(LoggingArgs) $(RPScopeArgs) /v:n |
| 45 | +# displayName: 'Ubuntu Build and Run tests' |
| 46 | +# - task: PublishTestResults@2 |
| 47 | +# condition: succeededOrFailed() |
| 48 | +# inputs: |
| 49 | +# testResultsFiles: '**/*.trx' |
| 50 | +# testRunTitle: 'Ubuntu Test Results' |
| 51 | +# testResultsFormat: 'VSTest' |
| 52 | +# mergeTestResults: true |
53 | 53 |
|
0 commit comments