forked from dotnet/roslyn
-
Notifications
You must be signed in to change notification settings - Fork 0
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 dotnet#57228 from genlu/OopCoreIntegrationTest
Add ServiceHub core host integration test CI
- Loading branch information
Showing
4 changed files
with
55 additions
and
4 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,40 @@ | ||
# Separate pipeline from normal integration CI to allow branches to change legs | ||
|
||
# Branches that trigger a build on commit | ||
trigger: | ||
- main | ||
- main-vs-deps | ||
- release/* | ||
- features/* | ||
- demos/* | ||
|
||
# Branches that are allowed to trigger a build via /azp run. | ||
# Automatic building of all PRs is disabled in the pipeline's trigger page. | ||
# See https://docs.microsoft.com/en-us/azure/devops/pipelines/repos/github?view=azure-devops&tabs=yaml#comment-triggers | ||
pr: | ||
- main | ||
- main-vs-deps | ||
- release/* | ||
- features/* | ||
- demos/* | ||
|
||
jobs: | ||
- job: VS_Integration_CoreHost | ||
pool: | ||
name: NetCorePublic-Pool | ||
queue: $(queueName) | ||
strategy: | ||
maxParallel: 2 | ||
matrix: | ||
debug: | ||
_configuration: Debug | ||
release: | ||
_configuration: Release | ||
timeoutInMinutes: 135 | ||
|
||
steps: | ||
- template: eng/pipelines/test-integration-job.yml | ||
parameters: | ||
configuration: $(_configuration) | ||
oop64bit: true | ||
oopCoreClr: true |
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