Azure Pipelines Build Config (#72)
* Update azure-pipelines.yml for Azure Pipelines
This commit is contained in:
parent
44a1eb009f
commit
94828b955d
|
@ -29,7 +29,7 @@
|
|||
<Keyword>ManagedCProj</Keyword>
|
||||
<RootNamespace>DSInternals.Replication.Interop</RootNamespace>
|
||||
<ProjectName>DSInternals.Replication.Interop</ProjectName>
|
||||
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
|
||||
<WindowsTargetPlatformVersion>10.0.17134.0</WindowsTargetPlatformVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
|
@ -292,4 +292,4 @@
|
|||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
</Project>
|
||||
|
|
|
@ -1,30 +1,118 @@
|
|||
# .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
|
||||
# Azure Pipelines Build Configuration
|
||||
|
||||
pool:
|
||||
vmImage: 'VS2017-Win2016'
|
||||
|
||||
variables:
|
||||
solution: '**/*.sln'
|
||||
buildPlatform: 'Any CPU'
|
||||
buildConfiguration: 'Release'
|
||||
packagesFolder: 'Build/packages'
|
||||
|
||||
steps:
|
||||
- task: NuGetToolInstaller@0
|
||||
|
||||
- task: NuGetCommand@2
|
||||
displayName: 'NuGet Restore Packages'
|
||||
inputs:
|
||||
command: 'restore'
|
||||
restoreSolution: '$(solution)'
|
||||
|
||||
- task: DownloadSecureFile@1
|
||||
displayName: 'Download SNK File'
|
||||
inputs:
|
||||
secureFile: 'DSInternals.Private.snk'
|
||||
|
||||
- task: CopyFiles@2
|
||||
displayName: 'Copy SNK File to Keys'
|
||||
inputs:
|
||||
sourceFolder: '$(Agent.TempDirectory)'
|
||||
contents: '*.snk'
|
||||
targetFolder: 'Keys'
|
||||
|
||||
- task: VSBuild@1
|
||||
displayName: 'VSBuild ($(buildConfiguration) x86)'
|
||||
inputs:
|
||||
solution: '$(solution)'
|
||||
platform: '$(buildPlatform)'
|
||||
platform: 'x86'
|
||||
configuration: '$(buildConfiguration)'
|
||||
restoreNugetPackages: false
|
||||
|
||||
- task: VSTest@2
|
||||
- task: VSBuild@1
|
||||
displayName: 'VSBuild ($(buildConfiguration) x64)'
|
||||
inputs:
|
||||
platform: '$(buildPlatform)'
|
||||
solution: '$(solution)'
|
||||
platform: 'x64'
|
||||
configuration: '$(buildConfiguration)'
|
||||
restoreNugetPackages: false
|
||||
|
||||
- task: PublishBuildArtifacts@1
|
||||
displayName: 'Publish Raw PowerShell Module'
|
||||
inputs:
|
||||
pathtoPublish: 'Build/bin/Release/DSInternals'
|
||||
artifactName: 'DSInternals'
|
||||
|
||||
- task: PowerShell@2
|
||||
displayName: 'Pack PowerShell Module'
|
||||
inputs:
|
||||
targetType: 'filePath'
|
||||
filePath: 'Scripts/Pack-PSModule.ps1'
|
||||
|
||||
- task: NuGetCommand@2
|
||||
displayName: 'NuGet Pack (DSInternals.Common)'
|
||||
inputs:
|
||||
command: 'pack'
|
||||
packagesToPack: '**/DSInternals.Common.csproj'
|
||||
configuration: '$(BuildConfiguration)'
|
||||
packDestination: '$(packagesFolder)'
|
||||
includeReferencedProjects: true
|
||||
verbosityPack: 'detailed'
|
||||
|
||||
- task: NuGetCommand@2
|
||||
displayName: 'NuGet Pack (DSInternals.DataStore)'
|
||||
inputs:
|
||||
command: 'pack'
|
||||
packagesToPack: '**/DSInternals.DataStore.csproj'
|
||||
configuration: '$(BuildConfiguration)'
|
||||
packDestination: '$(packagesFolder)'
|
||||
includeReferencedProjects: true
|
||||
verbosityPack: 'detailed'
|
||||
|
||||
- task: NuGetCommand@2
|
||||
displayName: 'NuGet Pack (DSInternals.Replication)'
|
||||
inputs:
|
||||
command: 'pack'
|
||||
packagesToPack: '**/DSInternals.Replication.csproj'
|
||||
configuration: '$(BuildConfiguration)'
|
||||
packDestination: '$(packagesFolder)'
|
||||
includeReferencedProjects: true
|
||||
verbosityPack: 'detailed'
|
||||
|
||||
- task: NuGetCommand@2
|
||||
displayName: 'NuGet Pack (DSInternals.SAM)'
|
||||
inputs:
|
||||
command: 'pack'
|
||||
packagesToPack: '**/DSInternals.SAM.csproj'
|
||||
configuration: '$(BuildConfiguration)'
|
||||
packDestination: '$(packagesFolder)'
|
||||
includeReferencedProjects: true
|
||||
verbosityPack: 'detailed'
|
||||
|
||||
- task: PublishBuildArtifacts@1
|
||||
displayName: 'Publish NuGet Packages'
|
||||
inputs:
|
||||
pathtoPublish: '$(packagesFolder)'
|
||||
artifactName: 'NuGet'
|
||||
|
||||
- task: PowerShell@2
|
||||
displayName: 'Run Smoke Tests'
|
||||
inputs:
|
||||
targetType: 'filePath'
|
||||
filePath: 'Scripts/Invoke-SmokeTests.ps1'
|
||||
|
||||
- task: PublishTestResults@2
|
||||
displayName: 'Publish Smoke Test Results'
|
||||
inputs:
|
||||
testResultsFormat: 'NUnit'
|
||||
testResultsFiles: '**/*.xml'
|
||||
searchFolder: 'TestResults'
|
||||
#testRunTitle: # Optional
|
Loading…
Reference in New Issue