-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Changing the package output path so all packages go to the same folder. * Explicitly setting the repo to use 3.0.100-preview7-012821 rather than latest * Reducing the azure-pipelines file size by using templates * Updating the azure-pipelines to collection package artifacts * Setting RuntimeIdentifier for ubuntu again.
- Loading branch information
1 parent
7c19f8a
commit f522f5e
Showing
6 changed files
with
109 additions
and
87 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
jobs: | ||
- job: ${{parameters.name}} | ||
pool: | ||
name: ${{parameters.pool}} | ||
steps: | ||
- task: Bash@3 | ||
displayName: 'Run scripts/cibuild.sh' | ||
inputs: | ||
targetType: filePath | ||
filePath: ./scripts/cibuild.sh | ||
arguments: '--configuration ${{parameters.configuration}} --architecture ${{parameters.architecture}}' | ||
- task: PublishTestResults@2 | ||
displayName: 'Publish Test Results' | ||
inputs: | ||
testResultsFormat: VSTest | ||
testResultsFiles: artifacts/tst/${{parameters.configuration}}/*.trx | ||
mergeTestResults: true | ||
failTaskOnFailedTests: true | ||
testRunTitle: '${{parameters.name}}' | ||
buildConfiguration: ${{parameters.configuration}} | ||
buildPlatform: ${{parameters.architecture}} | ||
- task: PublishBuildArtifacts@1 | ||
displayName: 'Publish NuGet Packages' | ||
inputs: | ||
PathtoPublish: artifacts/pkg/${{parameters.configuration}} | ||
ArtifactName: packages | ||
publishLocation: Container | ||
variables: | ||
RuntimeIdentifier: ${{parameters.rid}} |
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,27 @@ | ||
jobs: | ||
- job: ${{parameters.name}} | ||
pool: | ||
name: ${{parameters.pool}} | ||
demands: Cmd | ||
steps: | ||
- task: BatchScript@1 | ||
displayName: 'Run scripts/cibuild.cmd' | ||
inputs: | ||
filename: scripts/cibuild.cmd | ||
arguments: '-configuration ${{parameters.configuration}} -architecture ${{parameters.architecture}}' | ||
- task: PublishTestResults@2 | ||
displayName: 'Publish Test Results' | ||
inputs: | ||
testResultsFormat: VSTest | ||
testResultsFiles: artifacts/tst/${{parameters.configuration}}/*.trx | ||
mergeTestResults: true | ||
failTaskOnFailedTests: true | ||
testRunTitle: '${{parameters.name}}' | ||
buildConfiguration: ${{parameters.configuration}} | ||
buildPlatform: ${{parameters.architecture}} | ||
- task: PublishBuildArtifacts@1 | ||
displayName: 'Publish NuGet Packages' | ||
inputs: | ||
PathtoPublish: artifacts/pkg/${{parameters.configuration}} | ||
ArtifactName: packages | ||
publishLocation: Container |
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