Linux portable builds currently do not run tests (#5983)

This commit is contained in:
Justin Goshi 2017-03-09 10:06:22 -10:00 committed by GitHub
parent 663df18046
commit 3a58cac351
2 changed files with 5 additions and 18 deletions

View file

@ -60,7 +60,11 @@ platformList.each { platform ->
Utilities.setMachineAffinity(newJob, osUsedForMachineAffinity, 'latest-or-auto')
Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
Utilities.addMSTestResults(newJob, '**/*.trx')
// Remove this check once tests work for 2.0. Until that time Linux portable tests will fail so we
// don't run the tests and there won't be any .trx file.
if (os != 'Linux') {
Utilities.addMSTestResults(newJob, '**/*.trx')
}
Utilities.addGithubPRTriggerForBranch(newJob, branch, "${os} ${architecture} ${configuration} Build")
}