[CI] Do not try to find the minor version until a bug is fixed. (#13334)

The agent is not reporting the OS version property and returns only
11.0. This has been fixed in:

https://github.com/microsoft/azure-pipelines-agent/pull/3605

But this was not yet landed.
This commit is contained in:
Manuel de la Pena 2021-11-10 16:05:45 -05:00 коммит произвёл GitHub
Родитель b960d569b0
Коммит bc3df9ec21
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -54,7 +54,7 @@ parameters:
statusContext: 'VSTS: device tests iOS',
iOSDeviceDemand: [
'ios',
"Agent.OSVersion -equals '11.6'"
"Agent.OSVersion -equals '11.0'"
]
},
{
@ -68,7 +68,7 @@ parameters:
statusContext: 'VSTS: device tests tvOS',
iOSDeviceDemand: [
'tvos',
"Agent.OSVersion -equals '11.6'"
"Agent.OSVersion -equals '11.0'"
]
}]