2019-05-29 23:06:38 +03:00
|
|
|
#
|
|
|
|
# See https://docs.microsoft.com/azure/devops/pipelines/yaml-schema for reference.
|
|
|
|
#
|
|
|
|
|
2018-12-02 03:25:55 +03:00
|
|
|
variables:
|
2019-01-16 02:56:11 +03:00
|
|
|
- name: Build.Repository.Clean
|
|
|
|
value: true
|
|
|
|
- name: _TeamName
|
|
|
|
value: AspNetCore
|
2019-03-01 02:01:52 +03:00
|
|
|
- name: DOTNET_SKIP_FIRST_TIME_EXPERIENCE
|
|
|
|
value: true
|
2019-04-11 05:27:11 +03:00
|
|
|
- name: _PublishUsingPipelines
|
|
|
|
value: true
|
|
|
|
- name: _DotNetArtifactsCategory
|
2019-09-24 01:11:16 +03:00
|
|
|
value: .NETCORE
|
|
|
|
- name: _DotNetValidationArtifactsCategory
|
2019-09-24 21:10:08 +03:00
|
|
|
value: .NETCOREVALIDATION
|
2019-12-11 00:05:34 +03:00
|
|
|
- ${{ if ne(variables['System.TeamProject'], 'public') }}:
|
|
|
|
- group: DotNet-MSRC-Storage
|
|
|
|
- name: _InternalRuntimeDownloadArgs
|
|
|
|
value: /p:DotNetRuntimeSourceFeed=https://dotnetclimsrc.blob.core.windows.net/dotnet
|
|
|
|
/p:DotNetRuntimeSourceFeedKey=$(dotnetclimsrc-read-sas-token-base64)
|
|
|
|
- ${{ if eq(variables['System.TeamProject'], 'public') }}:
|
|
|
|
- name: _InternalRuntimeDownloadArgs
|
|
|
|
value: ''
|
2020-01-09 03:51:55 +03:00
|
|
|
|
2019-10-30 21:48:28 +03:00
|
|
|
# used for post-build phases, internal builds only
|
|
|
|
- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
|
2019-10-31 00:06:31 +03:00
|
|
|
- group: DotNet-AspNet-SDLValidation-Params
|
2018-12-21 04:21:06 +03:00
|
|
|
|
2018-12-02 03:25:55 +03:00
|
|
|
trigger:
|
2019-05-29 23:06:38 +03:00
|
|
|
batch: true
|
|
|
|
branches:
|
|
|
|
include:
|
|
|
|
- master
|
|
|
|
- release/*
|
2019-11-25 22:03:52 +03:00
|
|
|
- internal/release/3.*
|
2018-12-02 03:25:55 +03:00
|
|
|
|
|
|
|
pr:
|
2019-05-29 23:06:38 +03:00
|
|
|
autoCancel: true
|
|
|
|
branches:
|
|
|
|
include:
|
|
|
|
- '*'
|
2018-12-02 03:25:55 +03:00
|
|
|
|
2019-07-22 08:17:43 +03:00
|
|
|
stages:
|
|
|
|
- stage: build
|
|
|
|
displayName: Build
|
|
|
|
jobs:
|
|
|
|
# This job checks for code quality
|
|
|
|
- template: /eng/common/templates/jobs/jobs.yml
|
|
|
|
parameters:
|
|
|
|
enablePublishBuildArtifacts: false
|
|
|
|
enablePublishTestResults: false
|
|
|
|
enablePublishUsingPipelines: false
|
|
|
|
jobs:
|
|
|
|
- job: Code_check
|
|
|
|
displayName: Code check
|
|
|
|
pool:
|
|
|
|
${{ if eq(variables['System.TeamProject'], 'public') }}:
|
|
|
|
name: NetCorePublic-Pool
|
2020-02-03 23:34:47 +03:00
|
|
|
queue: BuildPool.Server.Amd64.VS2019.Open
|
2019-07-22 08:17:43 +03:00
|
|
|
${{ if ne(variables['System.TeamProject'], 'public') }}:
|
|
|
|
name: NetCoreInternal-Pool
|
2020-02-03 23:34:47 +03:00
|
|
|
queue: BuildPool.Server.Amd64.VS2019
|
2019-07-22 08:17:43 +03:00
|
|
|
steps:
|
2019-09-20 20:01:25 +03:00
|
|
|
- task: NodeTool@0
|
|
|
|
displayName: Install Node 10.x
|
|
|
|
inputs:
|
|
|
|
versionSpec: 10.x
|
2019-07-22 08:17:43 +03:00
|
|
|
- task: NuGetCommand@2
|
|
|
|
displayName: 'Clear NuGet caches'
|
|
|
|
condition: succeeded()
|
|
|
|
inputs:
|
|
|
|
command: custom
|
|
|
|
arguments: 'locals all -clear'
|
2019-12-11 00:05:34 +03:00
|
|
|
- ${{ if ne(variables['System.TeamProject'], 'public') }}:
|
|
|
|
- task: PowerShell@2
|
|
|
|
displayName: Setup Private Feeds Credentials
|
|
|
|
inputs:
|
|
|
|
filePath: $(Build.SourcesDirectory)/eng/common/SetupNugetSources.ps1
|
|
|
|
arguments: -ConfigFile $(Build.SourcesDirectory)/NuGet.config -Password $Env:Token
|
|
|
|
env:
|
|
|
|
Token: $(dn-bot-dnceng-artifact-feeds-rw)
|
|
|
|
- powershell: ./restore.cmd -ci $(_InternalRuntimeDownloadArgs); ./eng/scripts/CodeCheck.ps1 -ci
|
2019-07-22 08:17:43 +03:00
|
|
|
displayName: Run eng/scripts/CodeCheck.ps1
|
2019-02-19 20:17:05 +03:00
|
|
|
|
2019-07-22 08:17:43 +03:00
|
|
|
- job: Source_Build
|
|
|
|
jobName: Source_Build
|
|
|
|
displayName: 'Test: Linux Source Build'
|
|
|
|
container:
|
|
|
|
image: centos:7
|
|
|
|
options: --init # This ensures all the stray defunct processes are reaped.
|
|
|
|
pool:
|
|
|
|
vmImage: ubuntu-16.04
|
|
|
|
variables:
|
|
|
|
- DotNetCoreSdkDir: $(Agent.ToolsDirectory)/dotnet
|
|
|
|
- DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: true
|
|
|
|
- _BuildConfig: Release
|
|
|
|
steps:
|
2019-09-21 00:09:34 +03:00
|
|
|
- task: NodeTool@0
|
|
|
|
displayName: Install Node 10.x
|
|
|
|
inputs:
|
|
|
|
versionSpec: 10.x
|
2019-07-22 08:17:43 +03:00
|
|
|
- script: |
|
|
|
|
source eng/common/native/common-library.sh
|
|
|
|
mkdir -p $HOME/bin
|
|
|
|
GetFile https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 $HOME/bin/jq
|
|
|
|
chmod +x $HOME/bin/jq
|
|
|
|
echo "##vso[task.prependpath]$HOME/bin"
|
|
|
|
displayName: Install jq
|
2019-12-11 00:05:34 +03:00
|
|
|
- ${{ if ne(variables['System.TeamProject'], 'public') }}:
|
|
|
|
- task: Bash@3
|
|
|
|
displayName: Setup Private Feeds Credentials
|
|
|
|
inputs:
|
|
|
|
filePath: $(Build.SourcesDirectory)/eng/common/SetupNugetSources.sh
|
|
|
|
arguments: $(Build.SourcesDirectory)/NuGet.config $Token
|
|
|
|
env:
|
|
|
|
Token: $(dn-bot-dnceng-artifact-feeds-rw)
|
2019-09-20 00:35:53 +03:00
|
|
|
- script: ./eng/scripts/ci-source-build.sh --ci --configuration $(_BuildConfig) /p:BuildNodeJs=false
|
2019-07-22 08:17:43 +03:00
|
|
|
displayName: Run ci-source-build.sh
|
2019-05-29 23:06:38 +03:00
|
|
|
|
2019-07-22 08:17:43 +03:00
|
|
|
- task: PublishBuildArtifacts@1
|
|
|
|
displayName: Upload package artifacts
|
|
|
|
# Only capture source build artifacts in PRs for the sake of inspecting
|
|
|
|
# changes that impact source-build. The artifacts from this build pipeline are never actually used.
|
|
|
|
condition: and(succeeded(), eq(variables['Build.Reason'], 'PullRequest'))
|
|
|
|
inputs:
|
|
|
|
pathtoPublish: artifacts/packages/
|
|
|
|
artifactName: Source_Build_Packages
|
|
|
|
artifactType: Container
|
|
|
|
parallel: true
|
2019-05-29 23:06:38 +03:00
|
|
|
|
2019-07-22 08:17:43 +03:00
|
|
|
- task: PublishBuildArtifacts@1
|
|
|
|
displayName: Publish Logs
|
|
|
|
inputs:
|
|
|
|
PathtoPublish: '$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)'
|
|
|
|
PublishLocation: Container
|
|
|
|
ArtifactName: Source_Build_Logs
|
|
|
|
continueOnError: true
|
|
|
|
condition: always()
|
2019-05-29 23:06:38 +03:00
|
|
|
|
2019-07-22 08:17:43 +03:00
|
|
|
# Three jobs for each of the three OSes we want to run on
|
|
|
|
- template: /eng/common/templates/jobs/jobs.yml
|
|
|
|
parameters:
|
|
|
|
enablePublishBuildArtifacts: true
|
|
|
|
enablePublishTestResults: true
|
2019-07-30 02:46:41 +03:00
|
|
|
enablePublishUsingPipelines: ${{ variables._PublishUsingPipelines }}
|
2019-07-22 08:17:43 +03:00
|
|
|
enableTelemetry: true
|
2020-01-09 03:51:55 +03:00
|
|
|
helixRepo: dotnet/aspnetcore-tooling
|
2019-07-22 08:17:43 +03:00
|
|
|
helixType: build.product/
|
|
|
|
# enableMicrobuild can't be read from a user-defined variable (Azure DevOps limitation)
|
|
|
|
${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
|
|
|
|
enableMicrobuild: true
|
|
|
|
enablePublishBuildAssets: true
|
|
|
|
jobs:
|
|
|
|
- job: Windows
|
|
|
|
pool:
|
|
|
|
${{ if eq(variables['System.TeamProject'], 'public') }}:
|
|
|
|
name: NetCorePublic-Pool
|
2020-02-03 23:34:47 +03:00
|
|
|
queue: BuildPool.Server.Amd64.VS2019.Open
|
2019-07-22 08:17:43 +03:00
|
|
|
${{ if ne(variables['System.TeamProject'], 'public') }}:
|
|
|
|
name: NetCoreInternal-Pool
|
2020-02-03 23:34:47 +03:00
|
|
|
queue: BuildPool.Server.Amd64.VS2019
|
2019-07-22 08:17:43 +03:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
debug:
|
|
|
|
_BuildConfig: Debug
|
2020-02-25 04:49:24 +03:00
|
|
|
_PublishArgs: /p:DotNetPublishUsingPipelines=$(_PublishUsingPipelines)
|
2019-07-22 08:17:43 +03:00
|
|
|
release:
|
|
|
|
_BuildConfig: Release
|
|
|
|
${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
|
|
|
|
_DotNetPublishToBlobFeed: true
|
|
|
|
_PublishArgs: /p:PublishToSymbolServer=true
|
|
|
|
/p:DotNetSymbolServerTokenMsdl=$(microsoft-symbol-server-pat)
|
|
|
|
/p:DotNetSymbolServerTokenSymWeb=$(symweb-symbol-server-pat)
|
|
|
|
/p:PublishToAzure=true
|
|
|
|
/p:DotNetPublishUsingPipelines=$(_PublishUsingPipelines)
|
|
|
|
/p:DotNetArtifactsCategory=$(_DotNetArtifactsCategory)
|
|
|
|
/p:DotNetPublishBlobFeedKey=$(dotnetfeed-storage-access-key-1)
|
|
|
|
/p:DotNetPublishBlobFeedUrl=$(_PublishBlobFeedUrl)
|
|
|
|
/p:DotNetPublishToBlobFeed=$(_DotNetPublishToBlobFeed)
|
|
|
|
variables:
|
|
|
|
- _DotNetPublishToBlobFeed : false
|
|
|
|
- _PublishBlobFeedUrl: https://dotnetfeed.blob.core.windows.net/aspnet-aspnetcore-tooling/index.json
|
|
|
|
- _PublishArgs: '/p:PublishToSymbolServer=false /p:PublishToAzure=false'
|
|
|
|
- _BuildArgs: ''
|
2019-04-15 00:00:50 +03:00
|
|
|
|
2019-07-22 08:17:43 +03:00
|
|
|
# Variables for internal Official builds
|
|
|
|
- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
|
|
|
|
- _SignType: real
|
|
|
|
- _BuildArgs: /p:DotNetSignType=$(_SignType) /p:TeamName=$(_TeamName)
|
|
|
|
/p:OfficialBuildId=$(Build.BuildNumber)
|
|
|
|
/p:ManifestBuildBranch=$(Build.SourceBranchName)
|
|
|
|
/p:ManifestBuildNumber=$(Build.BuildNumber)
|
2020-01-09 03:51:55 +03:00
|
|
|
/p:VisualStudioDropName=Products/dotnet/aspnetcore-tooling/$(Build.SourceBranchName)/$(Build.BuildNumber)
|
2019-01-16 02:56:11 +03:00
|
|
|
|
2019-07-22 08:17:43 +03:00
|
|
|
- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
|
|
|
|
- group: DotNet-Blob-Feed
|
|
|
|
- group: DotNet-Symbol-Server-Pats
|
|
|
|
steps:
|
2019-09-20 00:36:19 +03:00
|
|
|
- task: NodeTool@0
|
|
|
|
displayName: Install Node 10.x
|
|
|
|
inputs:
|
|
|
|
versionSpec: 10.x
|
2020-02-26 00:48:09 +03:00
|
|
|
- powershell: npm install -g yarn
|
|
|
|
displayName: Install yarn
|
|
|
|
condition: succeeded()
|
2019-07-22 08:17:43 +03:00
|
|
|
- task: NuGetCommand@2
|
|
|
|
displayName: 'Clear NuGet caches'
|
|
|
|
condition: succeeded()
|
|
|
|
inputs:
|
|
|
|
command: custom
|
|
|
|
arguments: 'locals all -clear'
|
2019-09-19 19:36:02 +03:00
|
|
|
|
|
|
|
- powershell: ./eng/scripts/InstallProcDump.ps1
|
|
|
|
displayName: Install ProcDump
|
|
|
|
- powershell: ./eng/scripts/StartDumpCollectionForHangingBuilds.ps1 $(ProcDumpPath)procdump.exe artifacts/log/$(_BuildConfig) (Get-Date).AddMinutes(25) dotnet, msbuild
|
|
|
|
displayName: Start background dump collection
|
2019-12-11 00:05:34 +03:00
|
|
|
- ${{ if ne(variables['System.TeamProject'], 'public') }}:
|
|
|
|
- task: PowerShell@2
|
|
|
|
displayName: Setup Private Feeds Credentials
|
|
|
|
inputs:
|
|
|
|
filePath: $(Build.SourcesDirectory)/eng/common/SetupNugetSources.ps1
|
|
|
|
arguments: -ConfigFile $(Build.SourcesDirectory)/NuGet.config -Password $Env:Token
|
|
|
|
env:
|
|
|
|
Token: $(dn-bot-dnceng-artifact-feeds-rw)
|
2019-07-22 08:17:43 +03:00
|
|
|
- script: eng\common\cibuild.cmd
|
|
|
|
-configuration $(_BuildConfig)
|
|
|
|
-prepareMachine
|
|
|
|
$(_BuildArgs)
|
|
|
|
$(_PublishArgs)
|
2019-12-11 00:05:34 +03:00
|
|
|
$(_InternalRuntimeDownloadArgs)
|
2019-07-22 08:17:43 +03:00
|
|
|
name: Build
|
|
|
|
displayName: Build
|
|
|
|
condition: succeeded()
|
2020-02-26 00:48:09 +03:00
|
|
|
# Run VSCode functional tests
|
2020-03-24 20:58:49 +03:00
|
|
|
# - powershell: |
|
|
|
|
# . ../../../../activate.ps1
|
|
|
|
# yarn test -- --ci --configuration $(_BuildConfig) --no-restore
|
|
|
|
# deactivate
|
|
|
|
# workingDirectory: $(Build.SourcesDirectory)/src/Razor/test/VSCode.FunctionalTest
|
|
|
|
# displayName: Run VSCode Tests
|
|
|
|
# condition: and(succeeded(), ne(variables['_BuildConfig'], 'Release')) # Temporary: Don't run on Release
|
2019-09-19 19:36:02 +03:00
|
|
|
- powershell: ./eng/scripts/FinishDumpCollectionForHangingBuilds.ps1 artifacts/log/$(_BuildConfig)
|
|
|
|
displayName: Finish background dump collection
|
|
|
|
continueOnError: true
|
|
|
|
condition: always()
|
|
|
|
|
2019-07-22 08:17:43 +03:00
|
|
|
- task: PublishBuildArtifacts@1
|
2020-02-26 00:48:09 +03:00
|
|
|
displayName: Upload Test Results
|
2019-07-22 08:17:43 +03:00
|
|
|
condition: always()
|
|
|
|
continueOnError: true
|
|
|
|
inputs:
|
|
|
|
pathtoPublish: artifacts/TestResults/$(_BuildConfig)/
|
|
|
|
artifactName: $(Agent.Os)_$(Agent.JobName) TestResults
|
|
|
|
artifactType: Container
|
|
|
|
parallel: true
|
2020-03-24 20:58:49 +03:00
|
|
|
# - task: PublishTestResults@2
|
|
|
|
# displayName: Publish VSCode Test Results
|
|
|
|
# inputs:
|
|
|
|
# testResultsFormat: 'JUnit'
|
|
|
|
# testResultsFiles: '*.xml'
|
|
|
|
# searchFolder: '$(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)'
|
|
|
|
# continueOnError: true
|
|
|
|
# condition: always()
|
2019-07-22 08:17:43 +03:00
|
|
|
- task: PublishBuildArtifacts@1
|
|
|
|
displayName: Publish VSIX Artifacts
|
|
|
|
inputs:
|
|
|
|
PathtoPublish: '$(Build.SourcesDirectory)/artifacts/VSSetup/$(_BuildConfig)'
|
|
|
|
PublishLocation: Container
|
|
|
|
ArtifactName: VSIX_$(Agent.Os)_$(_BuildConfig)
|
|
|
|
continueOnError: true
|
|
|
|
condition: and(succeeded(), eq(variables['system.pullrequest.isfork'], false), eq(variables['_BuildConfig'], 'Release'))
|
|
|
|
- task: PublishBuildArtifacts@1
|
|
|
|
displayName: Publish VS for Mac Artifacts
|
|
|
|
inputs:
|
|
|
|
PathtoPublish: '$(Build.SourcesDirectory)/artifacts/MPack/$(_BuildConfig)'
|
|
|
|
PublishLocation: Container
|
|
|
|
ArtifactName: MPack_$(Agent.Os)_$(_BuildConfig)
|
|
|
|
continueOnError: true
|
|
|
|
condition: and(succeeded(), eq(variables['system.pullrequest.isfork'], false), eq(variables['_BuildConfig'], 'Release'))
|
|
|
|
- task: PublishBuildArtifacts@1
|
|
|
|
displayName: Publish package artifacts
|
|
|
|
inputs:
|
|
|
|
PathtoPublish: $(Build.SourcesDirectory)/artifacts/packages/$(_BuildConfig)
|
|
|
|
PublishLocation: Container
|
|
|
|
ArtifactName: Packages_$(Agent.Os)_$(_BuildConfig)
|
|
|
|
continueOnError: true
|
|
|
|
condition: and(succeeded(), eq(variables['system.pullrequest.isfork'], false), eq(variables['_BuildConfig'], 'Release'))
|
2018-12-02 03:25:55 +03:00
|
|
|
|
2019-07-22 08:17:43 +03:00
|
|
|
- job: macOS
|
|
|
|
pool:
|
2020-03-07 09:17:29 +03:00
|
|
|
vmImage: macOS-10.14
|
2019-07-22 08:17:43 +03:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
debug:
|
|
|
|
_BuildConfig: Debug
|
|
|
|
release:
|
|
|
|
_BuildConfig: Release
|
|
|
|
steps:
|
2019-09-20 00:36:19 +03:00
|
|
|
- task: NodeTool@0
|
|
|
|
displayName: Install Node 10.x
|
|
|
|
inputs:
|
|
|
|
versionSpec: 10.x
|
2019-12-11 00:05:34 +03:00
|
|
|
- ${{ if ne(variables['System.TeamProject'], 'public') }}:
|
|
|
|
- task: Bash@3
|
|
|
|
displayName: Setup Private Feeds Credentials
|
|
|
|
inputs:
|
|
|
|
filePath: $(Build.SourcesDirectory)/eng/common/SetupNugetSources.sh
|
|
|
|
arguments: $(Build.SourcesDirectory)/NuGet.config $Token
|
|
|
|
env:
|
|
|
|
Token: $(dn-bot-dnceng-artifact-feeds-rw)
|
2019-07-22 08:17:43 +03:00
|
|
|
- script: eng/common/cibuild.sh
|
|
|
|
--configuration $(_BuildConfig)
|
|
|
|
--prepareMachine
|
2019-12-11 00:05:34 +03:00
|
|
|
$(_InternalRuntimeDownloadArgs)
|
2019-07-22 08:17:43 +03:00
|
|
|
name: Build
|
|
|
|
displayName: Build
|
|
|
|
condition: succeeded()
|
|
|
|
- task: PublishBuildArtifacts@1
|
|
|
|
displayName: Upload TestResults
|
|
|
|
condition: always()
|
|
|
|
continueOnError: true
|
|
|
|
inputs:
|
|
|
|
pathtoPublish: artifacts/TestResults/$(_BuildConfig)/
|
|
|
|
artifactName: $(Agent.Os)_$(Agent.JobName) TestResults
|
|
|
|
artifactType: Container
|
|
|
|
parallel: true
|
2018-12-02 03:25:55 +03:00
|
|
|
|
2019-07-22 08:17:43 +03:00
|
|
|
- job: Linux
|
|
|
|
container:
|
|
|
|
image: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-14.04-cross-0cd4667-20170319080304
|
|
|
|
options: --init # This ensures all the stray defunct processes are reaped.
|
|
|
|
pool:
|
|
|
|
vmImage: ubuntu-16.04
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
debug:
|
|
|
|
_BuildConfig: Debug
|
|
|
|
release:
|
|
|
|
_BuildConfig: Release
|
|
|
|
steps:
|
2019-09-20 00:36:19 +03:00
|
|
|
- task: NodeTool@0
|
|
|
|
displayName: Install Node 10.x
|
|
|
|
inputs:
|
|
|
|
versionSpec: 10.x
|
2019-12-11 00:05:34 +03:00
|
|
|
- ${{ if ne(variables['System.TeamProject'], 'public') }}:
|
|
|
|
- task: Bash@3
|
|
|
|
displayName: Setup Private Feeds Credentials
|
|
|
|
inputs:
|
|
|
|
filePath: $(Build.SourcesDirectory)/eng/common/SetupNugetSources.sh
|
|
|
|
arguments: $(Build.SourcesDirectory)/NuGet.config $Token
|
|
|
|
env:
|
|
|
|
Token: $(dn-bot-dnceng-artifact-feeds-rw)
|
2019-07-22 08:17:43 +03:00
|
|
|
- script: eng/common/cibuild.sh
|
|
|
|
--configuration $(_BuildConfig)
|
|
|
|
--prepareMachine
|
2019-12-11 00:05:34 +03:00
|
|
|
$(_InternalRuntimeDownloadArgs)
|
2019-07-22 08:17:43 +03:00
|
|
|
name: Build
|
|
|
|
displayName: Build
|
|
|
|
condition: succeeded()
|
|
|
|
- task: PublishBuildArtifacts@1
|
2020-02-26 00:48:09 +03:00
|
|
|
displayName: Upload Test Results
|
2019-07-22 08:17:43 +03:00
|
|
|
condition: always()
|
|
|
|
continueOnError: true
|
|
|
|
inputs:
|
|
|
|
pathtoPublish: artifacts/TestResults/$(_BuildConfig)/
|
|
|
|
artifactName: $(Agent.Os)_$(Agent.JobName) TestResults
|
|
|
|
artifactType: Container
|
|
|
|
parallel: true
|
|
|
|
|
|
|
|
- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
|
|
|
|
- template: eng\common\templates\post-build\post-build.yml
|
|
|
|
parameters:
|
|
|
|
# See https://github.com/dotnet/arcade/issues/2871
|
|
|
|
enableSymbolValidation: false
|
2019-09-24 01:11:16 +03:00
|
|
|
publishInstallersAndChecksums: true
|
2019-10-30 21:30:04 +03:00
|
|
|
# This is to enable SDL runs part of Post-Build Validation Stage
|
|
|
|
SDLValidationParameters:
|
|
|
|
enable: true
|
|
|
|
continueOnError: false
|
|
|
|
params: ' -SourceToolsList @("policheck","credscan")
|
|
|
|
-TsaInstanceURL $(_TsaInstanceURL)
|
|
|
|
-TsaProjectName $(_TsaProjectName)
|
|
|
|
-TsaNotificationEmail $(_TsaNotificationEmail)
|
|
|
|
-TsaCodebaseAdmin $(_TsaCodebaseAdmin)
|
|
|
|
-TsaBugAreaPath $(_TsaBugAreaPath)
|
|
|
|
-TsaIterationPath $(_TsaIterationPath)
|
2019-10-30 21:33:03 +03:00
|
|
|
-TsaRepositoryName "AspNetCore-Tooling"
|
|
|
|
-TsaCodebaseName "AspNetCore-Tooling"
|
2019-10-30 21:30:04 +03:00
|
|
|
-TsaPublish $True'
|