Linux portable builds currently do not run tests (#5983)
This commit is contained in:
parent
663df18046
commit
3a58cac351
2 changed files with 5 additions and 18 deletions
|
@ -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")
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue