-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert CI pipeline to MicroBuild template (#308)
* Move CI build to MicroBuild template * Update to latest nuget * Update dockerfile to 2022 * Add required compile flags for binskim * Use ProgramDatabase DebugInformationFormat for all builds
- Loading branch information
Showing
13 changed files
with
113 additions
and
58 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
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
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
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
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
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
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
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,22 @@ | ||
parameters: | ||
- name: path | ||
type: string | ||
|
||
- name: artifactName | ||
type: string | ||
|
||
- name: displayName | ||
type: string | ||
default: 'Publish artifact' | ||
|
||
- name: condition | ||
type: string | ||
default: succeeded() | ||
|
||
steps: | ||
- task: 1ES.PublishPipelineArtifact@1 | ||
displayName: ${{ parameters.displayName }} | ||
condition: ${{ parameters.condition }} | ||
inputs: | ||
targetPath: ${{ parameters.path }} | ||
artifactName: ${{ parameters.artifactName }} |
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,22 @@ | ||
parameters: | ||
- name: path | ||
type: string | ||
|
||
- name: artifactName | ||
type: string | ||
|
||
- name: displayName | ||
type: string | ||
default: 'Publish artifact' | ||
|
||
- name: condition | ||
type: string | ||
default: succeeded() | ||
|
||
steps: | ||
- task: PublishBuildArtifacts@1 | ||
displayName: ${{ parameters.displayName }} | ||
condition: ${{ parameters.condition }} | ||
inputs: | ||
PathtoPublish: ${{ parameters.path }} | ||
ArtifactName: ${{ parameters.artifactName }} |
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
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
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
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