Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Update azure-pipelines.yml for Azure Pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
erri120 committed Aug 10, 2020
1 parent c3807af commit 9a3964d
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .ci/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ variables:
buildConfiguration: 'Release'

steps:
- checkout: self
clean: true

- task: NuGetToolInstaller@1

- task: NuGetCommand@2
Expand All @@ -30,4 +33,19 @@ steps:
- task: VSTest@2
inputs:
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
configuration: '$(buildConfiguration)'

- task: ArchiveFiles@2
inputs:
rootFolderOrFile: '$(Build.BinariesDirectory)'
includeRootFolder: false
archiveType: '7z'
sevenZipCompression: 'normal'
archiveFile: '$(Build.ArtifactStagingDirectory)/$(Build.BuildId).zip'
replaceExistingArchive: true

- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
ArtifactName: 'Extensions.7z'
publishLocation: 'Container'

0 comments on commit 9a3964d

Please sign in to comment.