-
Notifications
You must be signed in to change notification settings - Fork 5
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
100 changed files
with
2,695 additions
and
446 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
parameters: | ||
- name: images | ||
type: object | ||
- name: dotNetVersions | ||
type: object | ||
- name: repositoryInfoProviders | ||
type: object | ||
|
||
jobs: | ||
- ${{ each image in parameters.images }}: | ||
- ${{ each dotnetVersion in parameters.dotNetVersions }}: | ||
- ${{ each repositoryInfoProvider in parameters.repositoryInfoProviders }}: | ||
- job: Test_Frosting_${{ replace(replace(image,'-','_'),'.','_') }}_Net${{ dotNetVersion }}_${{ replace(repositoryInfoProvider,'-','_') }} | ||
displayName: Integration Tests Frosting ${{ image }} (.NET ${{ dotNetVersion }} / ${{ repositoryInfoProvider }}) | ||
dependsOn: Build | ||
pool: | ||
vmImage: '${{ image }}' | ||
steps: | ||
- template: ../steps/prepare-test.yml | ||
parameters: | ||
dotNetVersion: ${{ dotNetVersion }} | ||
- bash: | | ||
./build.sh --verbosity=diagnostic | ||
workingDirectory: ./tests/frosting/net${{ dotNetVersion }}.0-${{ repositoryInfoProvider }} | ||
displayName: 'Run integration tests' | ||
- publish: $(Build.SourcesDirectory)/tests/frosting/net${{ dotNetVersion }}.0-${{ repositoryInfoProvider }}/build/BuildArtifacts/output | ||
artifact: Integration Tests Frosting ${{ image }} (.NET ${{ dotNetVersion }} + ${{ repositoryInfoProvider }}) | ||
displayName: 'Publish generated reports as build artifact' |
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,28 @@ | ||
parameters: | ||
- name: images | ||
type: object | ||
- name: dotNetVersions | ||
type: object | ||
- name: repositoryInfoProviders | ||
type: object | ||
|
||
jobs: | ||
- ${{ each image in parameters.images }}: | ||
- ${{ each dotnetVersion in parameters.dotNetVersions }}: | ||
- ${{ each repositoryInfoProvider in parameters.repositoryInfoProviders }}: | ||
- job: Test_Script_Runner_${{ replace(replace(image,'-','_'),'.','_') }}_Net${{ dotNetVersion }}_${{ replace(repositoryInfoProvider,'-','_') }} | ||
displayName: Integration Tests Script Runner ${{ image }} (.NET ${{ dotNetVersion }} / ${{ repositoryInfoProvider }}) | ||
dependsOn: Build | ||
pool: | ||
vmImage: '${{ image }}' | ||
steps: | ||
- template: ../steps/prepare-test.yml | ||
parameters: | ||
dotNetVersion: ${{ dotNetVersion }} | ||
- bash: | | ||
./build.sh --verbosity=diagnostic | ||
workingDirectory: ./tests/script-runner/net${{ dotNetVersion }}.0-${{ repositoryInfoProvider }} | ||
displayName: 'Run integration tests' | ||
- publish: $(Build.SourcesDirectory)/tests/script-runner/net${{ dotNetVersion }}.0-${{ repositoryInfoProvider }}/BuildArtifacts/output | ||
artifact: Integration Tests Script Runner ${{ image }} (.NET ${{ dotNetVersion }} + ${{ repositoryInfoProvider }}) | ||
displayName: 'Publish generated reports as build artifact' |
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,24 @@ | ||
parameters: | ||
- name: dotNetVersion | ||
type: string | ||
|
||
steps: | ||
- task: UseDotNet@2 | ||
inputs: | ||
version: '${{ parameters.dotNetVersion }}.x' | ||
displayName: 'Install .NET ${{ parameters.dotNetVersion }}' | ||
- task: NodeTool@0 | ||
inputs: | ||
versionSpec: '20.x' | ||
displayName: 'Install NodeJs 20.x' | ||
- script: | | ||
npm install -g markdownlint-cli | ||
displayName: 'Install required tools' | ||
- download: current | ||
artifact: NuGet Package | ||
displayName: 'Download build artifact' | ||
- task: CopyFiles@2 | ||
inputs: | ||
sourceFolder: $(Pipeline.Workspace)/NuGet Package | ||
targetFolder: $(Build.SourcesDirectory)/BuildArtifacts/Packages/NuGet | ||
displayName: 'Copy build artifact for test run' |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"sdk": { | ||
"allowPrerelease": true, | ||
"version": "9.0.100", | ||
"version": "9.0.101", | ||
"rollForward": "latestFeature" | ||
} | ||
} |
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
Oops, something went wrong.