summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorEgor Chesakov <Egor.Chesakov@microsoft.com>2019-04-11 22:50:48 -0700
committerGitHub <noreply@github.com>2019-04-11 22:50:48 -0700
commit1660956bca91b93259393419cb169a10df088926 (patch)
tree5f98785b3bff390481c6c259ace59f2cc37f1cf0 /azure-pipelines.yml
parent77bd2c4aab50f84d2a0a94275072ee52f295757c (diff)
downloadcoreclr-1660956bca91b93259393419cb169a10df088926.tar.gz
coreclr-1660956bca91b93259393419cb169a10df088926.tar.bz2
coreclr-1660956bca91b93259393419cb169a10df088926.zip
Enable default Ready2Run testing in pull requests. Workaround an issue with custom xunit.console.dll runner. (#23848)
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 07aa294156..fb2b53e467 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -221,6 +221,21 @@ jobs:
${{ if eq(variables['Build.DefinitionName'], 'coreclr-outerloop-gcstress0x3-gcstress0xc') }}:
testGroup: outerloop-gcstress0x3-gcstress0xc
+# The ReadyToRun test jobs that are triggered by default from a PR.
+- ${{ if and(eq(variables['System.TeamProject'], 'public'), eq(variables['Build.Reason'], 'PullRequest'), eq(variables['Build.DefinitionName'], 'coreclr-ci')) }}:
+ - template: eng/platform-matrix.yml
+ parameters:
+ jobTemplate: test-job.yml
+ buildConfig: checked
+ platforms:
+ - Linux_x64
+ - OSX_x64
+ - Windows_NT_x64
+ - Windows_NT_x86
+ jobParameters:
+ readyToRun: true
+ testGroup: innerloop
+
# CI
- ${{ if and(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'IndividualCI', 'BatchedCI')) }}:
- template: eng/platform-matrix.yml