-
Notifications
You must be signed in to change notification settings - Fork 675
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7560 from dibarbet/devkit_integration_tests
Update integration tests to also run against C# Dev Kit
- Loading branch information
Showing
73 changed files
with
1,064 additions
and
1,385 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
parameters: | ||
- name: pool | ||
type: object | ||
- name: containerName | ||
type: string | ||
default: '' | ||
- name: installDotNet | ||
type: boolean | ||
- name: installAdditionalLinuxDependencies | ||
type: boolean | ||
default: false | ||
|
||
jobs: | ||
- job: | ||
strategy: | ||
matrix: | ||
CSharpTests: | ||
npmCommand: 'test:withoutDevKit' | ||
DevKitTests: | ||
npmCommand: test:integration:devkit | ||
pool: ${{ parameters.pool }} | ||
${{ if parameters.containerName }}: | ||
container: ${{ parameters.containerName }} | ||
steps: | ||
- template: /azure-pipelines/test.yml@self | ||
parameters: | ||
# Prefer the dotnet from the container. | ||
installDotNet: false | ||
installAdditionalLinuxDependencies: true | ||
npmCommand: $(npmCommand) |
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
Oops, something went wrong.