diff options
author | Brian Sullivan <briansul@microsoft.com> | 2019-03-21 17:10:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-21 17:10:42 -0700 |
commit | badf173369fa09d33893017ec201cbeb39da3b9c (patch) | |
tree | bab601a3716115f6f7da09d9787ca8d1f24975cd | |
parent | f61314dab43e29eaa5c4323a890bc408be014f83 (diff) | |
parent | 0e71dfa5634aec9b115f4c66acb9c8ea1c7048cb (diff) | |
download | coreclr-badf173369fa09d33893017ec201cbeb39da3b9c.tar.gz coreclr-badf173369fa09d33893017ec201cbeb39da3b9c.tar.bz2 coreclr-badf173369fa09d33893017ec201cbeb39da3b9c.zip |
Merge pull request #23391 from briansull/pipeline-work
Add azure-pipeline job: coreclr-ci (Test Pri0 Linux_musl x64 release)
-rw-r--r-- | azure-pipelines.yml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9711bb7271..25b6779c54 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -191,7 +191,18 @@ jobs: # Release test builds # -# Official build +# Pull-Request test +- ${{ 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: release + platforms: + - Linux_musl_x64 + jobParameters: + testGroup: innerloop + +# Official test - ${{ if and(eq(variables['System.TeamProject'], 'internal'), ne(variables['Build.Reason'], 'PullRequest')) }}: - template: eng/platform-matrix.yml parameters: |