-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
trigger: none | ||
|
||
# The `resources` specify the location and version of the 1ES pipeline template. | ||
resources: | ||
repositories: | ||
- repository: 1esPipelines | ||
type: git | ||
name: 1ESPipelineTemplates/1ESPipelineTemplates | ||
ref: refs/tags/release | ||
|
||
extends: | ||
# The pipeline extends the 1ES template which will inject different SDL and compliance tasks. | ||
template: v1/1ES.Unofficial.PipelineTemplate.yml@1esPipelines | ||
parameters: | ||
pool: | ||
name: VSEngSS-MicroBuild2019-1ES | ||
stages: | ||
- stage: Stage | ||
jobs: | ||
- job: HostJob | ||
templateContext: | ||
outputs: | ||
- output: pipelineArtifact | ||
targetPath: $(System.DefaultWorkingDirectory)\$(BuildConfiguration)\*.msi | ||
steps: | ||
- checkout: self | ||
clean: true | ||
fetchTags: true | ||
- task: ms-vseng.MicroBuildTasks.30666190-6959-11e5-9f96-f56098202fef.MicroBuildSigningPlugin@1 | ||
displayName: Install Signing Plugin | ||
inputs: | ||
signType: real | ||
- task: NuGetCommand@2 | ||
displayName: Restore NuGet Packages | ||
inputs: | ||
solution: setup\*.sln | ||
feedRestore: 795cdb14-9c0f-490d-965b-8b2799c1b60a | ||
- task: VSBuild@1 | ||
displayName: Build Solution | ||
inputs: | ||
solution: setup\*.sln | ||
vsVersion: 16.0 | ||
platform: $(BuildPlatform) | ||
configuration: $(BuildConfiguration) |