@@ -33,15 +33,15 @@ public ITestOutputHelper Output
33
33
}
34
34
35
35
[ ConditionalTheory ]
36
- [ SkipOnHelix ( "https://github.com/dotnet/aspnetcore/issues/28090" , Queues = HelixConstants . Windows10Arm64 + HelixConstants . DebianArm64 ) ]
36
+ [ SkipOnHelix ( "https://github.com/dotnet/aspnetcore/issues/28090" , Queues = HelixConstants . Windows11Arm64 + HelixConstants . DebianArm64 ) ]
37
37
[ InlineData ( "IndividualB2C" , null ) ]
38
38
[ InlineData ( "IndividualB2C" , new string [ ] { ArgConstants . UseMinimalApis } ) ]
39
39
[ InlineData ( "IndividualB2C" , new string [ ] { ArgConstants . CalledApiUrlGraphMicrosoftCom , ArgConstants . CalledApiScopesUserReadWrite } ) ]
40
40
[ InlineData ( "IndividualB2C" , new string [ ] { ArgConstants . UseMinimalApis , ArgConstants . CalledApiUrlGraphMicrosoftCom , ArgConstants . CalledApiScopesUserReadWrite } ) ]
41
41
public Task WebApiTemplateCSharp_IdentityWeb_IndividualB2C_BuildsAndPublishes ( string auth , string [ ] args ) => PublishAndBuildWebApiTemplate ( languageOverride : null , auth : auth , args : args ) ;
42
42
43
43
[ ConditionalTheory ]
44
- [ SkipOnHelix ( "https://github.com/dotnet/aspnetcore/issues/28090" , Queues = HelixConstants . Windows10Arm64 + HelixConstants . DebianArm64 ) ]
44
+ [ SkipOnHelix ( "https://github.com/dotnet/aspnetcore/issues/28090" , Queues = HelixConstants . Windows11Arm64 + HelixConstants . DebianArm64 ) ]
45
45
[ InlineData ( "IndividualB2C" , null ) ]
46
46
[ InlineData ( "IndividualB2C" , new string [ ] { ArgConstants . UseProgramMain } ) ]
47
47
[ InlineData ( "IndividualB2C" , new string [ ] { ArgConstants . UseProgramMain , ArgConstants . UseMinimalApis } ) ]
@@ -50,7 +50,7 @@ public ITestOutputHelper Output
50
50
public Task WebApiTemplateCSharp_IdentityWeb_IndividualB2C_ProgramMain_BuildsAndPublishes ( string auth , string [ ] args ) => PublishAndBuildWebApiTemplate ( languageOverride : null , auth : auth , args : args ) ;
51
51
52
52
[ ConditionalTheory ]
53
- [ SkipOnHelix ( "https://github.com/dotnet/aspnetcore/issues/28090" , Queues = HelixConstants . Windows10Arm64 + HelixConstants . DebianArm64 ) ]
53
+ [ SkipOnHelix ( "https://github.com/dotnet/aspnetcore/issues/28090" , Queues = HelixConstants . Windows11Arm64 + HelixConstants . DebianArm64 ) ]
54
54
[ InlineData ( "SingleOrg" , null ) ]
55
55
[ InlineData ( "SingleOrg" , new string [ ] { ArgConstants . UseMinimalApis } ) ]
56
56
[ InlineData ( "SingleOrg" , new string [ ] { ArgConstants . CalledApiUrlGraphMicrosoftCom , ArgConstants . CalledApiScopesUserReadWrite } ) ]
@@ -60,7 +60,7 @@ public ITestOutputHelper Output
60
60
public Task WebApiTemplateCSharp_IdentityWeb_SingleOrg_BuildsAndPublishes ( string auth , string [ ] args ) => PublishAndBuildWebApiTemplate ( languageOverride : null , auth : auth , args : args ) ;
61
61
62
62
[ ConditionalTheory ]
63
- [ SkipOnHelix ( "https://github.com/dotnet/aspnetcore/issues/28090" , Queues = HelixConstants . Windows10Arm64 + HelixConstants . DebianArm64 ) ]
63
+ [ SkipOnHelix ( "https://github.com/dotnet/aspnetcore/issues/28090" , Queues = HelixConstants . Windows11Arm64 + HelixConstants . DebianArm64 ) ]
64
64
[ InlineData ( "SingleOrg" , null ) ]
65
65
[ InlineData ( "SingleOrg" , new string [ ] { ArgConstants . UseProgramMain } ) ]
66
66
[ InlineData ( "SingleOrg" , new string [ ] { ArgConstants . UseProgramMain , ArgConstants . UseMinimalApis } ) ]
@@ -74,27 +74,27 @@ public ITestOutputHelper Output
74
74
public Task WebApiTemplateFSharp ( ) => WebApiTemplateCore ( languageOverride : "F#" ) ;
75
75
76
76
[ ConditionalFact ]
77
- [ SkipOnHelix ( "Cert failure, https://github.com/dotnet/aspnetcore/issues/28090" , Queues = "All.OSX;" + HelixConstants . Windows10Arm64 + HelixConstants . DebianArm64 ) ]
77
+ [ SkipOnHelix ( "Cert failure, https://github.com/dotnet/aspnetcore/issues/28090" , Queues = "All.OSX;" + HelixConstants . Windows11Arm64 + HelixConstants . DebianArm64 ) ]
78
78
public Task WebApiTemplateCSharp ( ) => WebApiTemplateCore ( languageOverride : null ) ;
79
79
80
80
[ ConditionalFact ]
81
- [ SkipOnHelix ( "Cert failure, https://github.com/dotnet/aspnetcore/issues/28090" , Queues = "All.OSX;" + HelixConstants . Windows10Arm64 + HelixConstants . DebianArm64 ) ]
81
+ [ SkipOnHelix ( "Cert failure, https://github.com/dotnet/aspnetcore/issues/28090" , Queues = "All.OSX;" + HelixConstants . Windows11Arm64 + HelixConstants . DebianArm64 ) ]
82
82
public Task WebApiTemplateProgramMainCSharp ( ) => WebApiTemplateCore ( languageOverride : null , args : new [ ] { ArgConstants . UseProgramMain } ) ;
83
83
84
84
[ ConditionalFact ]
85
- [ SkipOnHelix ( "Cert failure, https://github.com/dotnet/aspnetcore/issues/28090" , Queues = "All.OSX;" + HelixConstants . Windows10Arm64 + HelixConstants . DebianArm64 ) ]
85
+ [ SkipOnHelix ( "Cert failure, https://github.com/dotnet/aspnetcore/issues/28090" , Queues = "All.OSX;" + HelixConstants . Windows11Arm64 + HelixConstants . DebianArm64 ) ]
86
86
public Task WebApiTemplateMinimalApisCSharp ( ) => WebApiTemplateCore ( languageOverride : null , args : new [ ] { ArgConstants . UseMinimalApis } ) ;
87
87
88
88
[ ConditionalFact ]
89
- [ SkipOnHelix ( "Cert failure, https://github.com/dotnet/aspnetcore/issues/28090" , Queues = "All.OSX;" + HelixConstants . Windows10Arm64 + HelixConstants . DebianArm64 ) ]
89
+ [ SkipOnHelix ( "Cert failure, https://github.com/dotnet/aspnetcore/issues/28090" , Queues = "All.OSX;" + HelixConstants . Windows11Arm64 + HelixConstants . DebianArm64 ) ]
90
90
public Task WebApiTemplateProgramMainMinimalApisCSharp ( ) => WebApiTemplateCore ( languageOverride : null , args : new [ ] { ArgConstants . UseProgramMain , ArgConstants . UseMinimalApis } ) ;
91
91
92
92
[ ConditionalTheory ]
93
93
[ InlineData ( false , false ) ]
94
94
[ InlineData ( false , true ) ]
95
95
[ InlineData ( true , true ) ]
96
96
[ InlineData ( true , false ) ]
97
- [ SkipOnHelix ( "Cert failure, https://github.com/dotnet/aspnetcore/issues/28090" , Queues = "All.OSX;" + HelixConstants . Windows10Arm64 + HelixConstants . DebianArm64 ) ]
97
+ [ SkipOnHelix ( "Cert failure, https://github.com/dotnet/aspnetcore/issues/28090" , Queues = "All.OSX;" + HelixConstants . Windows11Arm64 + HelixConstants . DebianArm64 ) ]
98
98
public async Task WebApiTemplateCSharp_WithoutOpenAPI ( bool useProgramMain , bool useMinimalApis )
99
99
{
100
100
var project = await FactoryFixture . CreateProject ( Output ) ;
0 commit comments