[xharness] Skip the old simulator variation for introspection/dotnet for now.

This commit is contained in:
Rolf Bjarne Kvinge 2020-06-30 18:16:03 +02:00
Родитель 76f456cc0f
Коммит 650e6e134e
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -106,6 +106,8 @@ namespace Xharness.Jenkins {
yield return new TestData { Variation = "Debug (all optimizations)", MTouchExtraArgs = "--registrar:static --optimize:all,-remove-uithread-checks", Debug = true, Profiling = false, LinkMode = "Full", Defines = "OPTIMIZEALL", Undefines = "DYNAMIC_REGISTRAR", Ignored = !jenkins.IncludeAll };
break;
case "introspection":
if (test.TestProject.IsDotNetProject)
break; // Our .NET 5 code hasn't implemented building using static libraries yet, and the iOS 10.3 simulator requires dylibs to be signed, which we don't do yet, thus this doesn't quite work yet for the iOS 10.3 simulator.
foreach (var target in test.Platform.GetAppRunnerTargets ())
yield return new TestData {
Variation = $"Debug ({test.Platform.GetSimulatorMinVersion ()})",