VisualStudio/azure-pipelines.yml

123 строки
4.0 KiB
YAML
Исходник Обычный вид История

# .NET Desktop
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
2019-10-10 13:20:57 +03:00
pool:
vmImage: 'windows-latest'
2019-10-10 14:21:29 +03:00
variables:
2019-11-07 12:49:54 +03:00
- group: GitHubVS
- name: githubvsSolution
value: 'GitHubVS.sln'
- name: essentialsSolution
value: 'src\GitHub.VisualStudio.16.sln'
- name: buildPlatform
value: 'Any CPU'
- name: buildConfiguration
value: 'Release'
2019-10-10 14:21:29 +03:00
2019-10-10 11:45:50 +03:00
jobs:
- job: build_and_test
2019-10-10 14:20:51 +03:00
displayName: 'Build/test GitHub for VS and Essentials'
2019-10-10 11:45:50 +03:00
strategy:
maxParallel: 2
matrix:
VSMarketplace:
ArtifactDirectory: '$(Build.ArtifactStagingDirectory)'
2019-10-10 11:45:50 +03:00
IsProductComponent: false
VSInstaller:
ArtifactDirectory: '$(Build.ArtifactStagingDirectory)\VSInstaller'
2019-10-10 11:45:50 +03:00
IsProductComponent: true
2019-10-10 11:45:50 +03:00
steps:
- checkout: self
submodules: true
2019-10-10 11:45:50 +03:00
# Can't use the NuGet tasks because of https://github.com/Microsoft/azure-pipelines-tasks/issues/6790
#- task: NuGetToolInstaller@0
#- task: NuGetCommand@2
# inputs:
# restoreSolution: '$(solution)'
# feedsToUse: 'config'
# nugetConfigPath: nuget.config
2019-10-10 11:45:50 +03:00
# Instead run nuget manually.
2019-10-11 12:36:54 +03:00
- task: DotNetCoreCLI@2
inputs:
command: custom
custom: tool
arguments: install --tool-path . nbgv
displayName: Install NBGV tool
- script: nbgv cloud
displayName: Set the cloud build number
2019-10-10 11:45:50 +03:00
- script: tools\nuget\nuget.exe restore $(githubvsSolution)
displayName: NuGet restore $(githubvsSolution)
2019-10-10 11:45:50 +03:00
- script: tools\nuget\nuget.exe restore $(essentialsSolution)
displayName: NuGet restore $(essentialsSolution)
- pwsh: mkdir $(ArtifactDirectory) -Force
2019-10-10 11:45:50 +03:00
displayName: Create VSIX staging directory
2019-10-09 17:48:48 +03:00
2019-10-10 11:45:50 +03:00
- task: MSBuild@1
displayName: GitHub for Visual Studio
inputs:
solution: $(githubvsSolution)
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
msbuildVersion: '16.0'
msbuildArguments: >
2019-10-10 14:32:26 +03:00
/p:TargetVsixContainer=$(ArtifactDirectory)\GitHub.VisualStudio.vsix
/p:IsProductComponent=$(IsProductComponent)
/p:DeployExtension=False
/p:GitHubVS_ClientId=$(GitHubVS_ClientId)
/p:GitHubVS_ClientSecret=$(GitHubVS_ClientSecret)
2019-10-10 11:45:50 +03:00
- task: MSBuild@1
displayName: GitHub Essentials
inputs:
solution: $(essentialsSolution)
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
msbuildVersion: '16.0'
msbuildArguments: >
2019-10-10 14:32:26 +03:00
/p:TargetVsixContainer=$(ArtifactDirectory)\GitHub.VisualStudio.16.vsix
/p:IsProductComponent=$(IsProductComponent)
/p:DeployExtension=False
2019-11-06 14:38:32 +03:00
- task: DownloadSecureFile@1
name: vsixsigntool_exe
inputs:
secureFile: vsixsigntool.exe
- task: DownloadSecureFile@1
name: certificate_pfx
inputs:
secureFile: certificate.pfx
2020-02-19 19:58:49 +03:00
# Disable VSIX signing
# - script: $(vsixsigntool_exe.secureFilePath) sign /f $(certificate_pfx.secureFilePath) /p "$(certificate_password)" /sha1 c4fdf13659f49e57ac14774fdf45053f499f185f /fd sha256 /tr http://timestamp.digicert.com /td sha256 $(ArtifactDirectory)\GitHub.VisualStudio.vsix
# displayName: Sign the GitHub for Visual Studio VSIX
#
# - script: $(vsixsigntool_exe.secureFilePath) sign /f $(certificate_pfx.secureFilePath) /p "$(certificate_password)" /sha1 c4fdf13659f49e57ac14774fdf45053f499f185f /fd sha256 /tr http://timestamp.digicert.com /td sha256 $(ArtifactDirectory)\GitHub.VisualStudio.16.vsix
# displayName: Sign the GitHub Essentials VSIX
2019-10-07 13:58:55 +03:00
2019-10-10 13:31:24 +03:00
- task: PublishBuildArtifacts@1
inputs:
pathToPublish: $(Build.ArtifactStagingDirectory)
artifactName: 'vsix'
2019-10-10 11:45:50 +03:00
- task: VSTest@2
inputs:
searchFolder: '$(Build.SourcesDirectory)\test'
testAssemblyVer2: '**\bin\**\*Tests.dll'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
diagnosticsEnabled: true
runSettingsFile: '$(Build.SourcesDirectory)\test\test.runsettings'