@@ -42,7 +42,7 @@ public void Dispose()
42
42
_loggerFactory . Dispose ( ) ;
43
43
}
44
44
45
- [ DockerAvailableFact ( ) ]
45
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
46
46
public async Task ApiEndToEndWithRegistryPushAndPull ( )
47
47
{
48
48
ILogger logger = _loggerFactory . CreateLogger ( nameof ( ApiEndToEndWithRegistryPushAndPull ) ) ;
@@ -89,7 +89,7 @@ public async Task ApiEndToEndWithRegistryPushAndPull()
89
89
}
90
90
}
91
91
92
- [ DockerAvailableFact ( ) ]
92
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
93
93
public async Task ApiEndToEndWithLocalLoad ( )
94
94
{
95
95
ILogger logger = _loggerFactory . CreateLogger ( nameof ( ApiEndToEndWithLocalLoad ) ) ;
@@ -130,7 +130,7 @@ public async Task ApiEndToEndWithLocalLoad()
130
130
}
131
131
}
132
132
133
- [ DockerAvailableFact ( ) ]
133
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
134
134
public async Task ApiEndToEndWithArchiveWritingAndLoad ( )
135
135
{
136
136
ILogger logger = _loggerFactory . CreateLogger ( nameof ( ApiEndToEndWithArchiveWritingAndLoad ) ) ;
@@ -180,7 +180,7 @@ public async Task ApiEndToEndWithArchiveWritingAndLoad()
180
180
}
181
181
}
182
182
183
- [ DockerAvailableFact ]
183
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
184
184
public async Task TarballsHaveCorrectStructure ( )
185
185
{
186
186
var archiveFile = Path . Combine ( TestSettings . TestArtifactsDirectory ,
@@ -351,7 +351,7 @@ private string BuildLocalApp([CallerMemberName] string testName = "TestName", st
351
351
return publishDirectory ;
352
352
}
353
353
354
- [ DockerAvailableFact ( ) ]
354
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
355
355
public async Task EndToEnd_MultiProjectSolution ( )
356
356
{
357
357
ILogger logger = _loggerFactory . CreateLogger ( nameof ( EndToEnd_MultiProjectSolution ) ) ;
@@ -441,7 +441,7 @@ public async Task EndToEnd_MultiProjectSolution()
441
441
/// It's safe to load the target for libraries in a multi-targeted context because libraries don't have EnableSdkContainerSupport
442
442
/// enabled by default, so the target will be skipped.
443
443
/// </summary>
444
- [ DockerAvailableFact ]
444
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
445
445
public async Task EndToEnd_MultiProjectSolution_with_multitargeted_library ( )
446
446
{
447
447
ILogger logger = _loggerFactory . CreateLogger ( nameof ( EndToEnd_MultiProjectSolution_with_multitargeted_library ) ) ;
@@ -509,7 +509,7 @@ public async Task EndToEnd_MultiProjectSolution_with_multitargeted_library()
509
509
commandResult . Should ( ) . HaveStdOutContaining ( "Pushed image 'webapp:latest'" ) ;
510
510
}
511
511
512
- [ DockerAvailableTheory ( ) ]
512
+ [ DockerAvailableTheory ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
513
513
[ InlineData ( "webapi" , false ) ]
514
514
[ InlineData ( "webapi" , true ) ]
515
515
[ InlineData ( "worker" , false ) ]
@@ -685,7 +685,7 @@ public async Task EndToEnd_NoAPI_ProjectType(string projectType, bool addPackage
685
685
privateNuGetAssets . Delete ( true ) ;
686
686
}
687
687
688
- [ DockerAvailableTheory ( ) ]
688
+ [ DockerAvailableTheory ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
689
689
[ InlineData ( DockerRegistryManager . FullyQualifiedBaseImageAspNet ) ]
690
690
[ InlineData ( DockerRegistryManager . FullyQualifiedBaseImageAspNetDigest ) ]
691
691
public void EndToEnd_NoAPI_Console ( string baseImage )
@@ -768,7 +768,7 @@ public void EndToEnd_NoAPI_Console(string baseImage)
768
768
privateNuGetAssets . Delete ( true ) ;
769
769
}
770
770
771
- [ DockerAvailableFact ]
771
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
772
772
public void EndToEnd_SingleArch_NoRid ( )
773
773
{
774
774
// Create a new console project
@@ -801,9 +801,10 @@ public void EndToEnd_SingleArch_NoRid()
801
801
processResultX64 . Should ( ) . Pass ( ) . And . HaveStdOut ( "Hello, World!" ) ;
802
802
}
803
803
804
+ /**
804
805
[InlineData("endtoendmultiarch-localregisty")]
805
806
[InlineData("myteam/endtoendmultiarch-localregisty")]
806
- [ DockerIsAvailableAndSupportsArchTheory ( "linux/arm64" , checkContainerdStoreAvailability : true ) ]
807
+ [DockerIsAvailableAndSupportsArchTheory(Skip = "https://github.com/dotnet/sdk/issues/49502", "linux/arm64", checkContainerdStoreAvailability: true)]
807
808
public void EndToEndMultiArch_LocalRegistry(string imageName)
808
809
{
809
810
string tag = "1.0";
@@ -859,8 +860,9 @@ public void EndToEndMultiArch_LocalRegistry(string imageName)
859
860
// Cleanup
860
861
newProjectDir.Delete(true);
861
862
}
863
+ */
862
864
863
- [ DockerAvailableFact ]
865
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
864
866
public void MultiArchStillAllowsSingleRID ( )
865
867
{
866
868
string imageName = NewImageName ( ) ;
@@ -912,7 +914,7 @@ public void MultiArchStillAllowsSingleRID()
912
914
newProjectDir . Delete ( true ) ;
913
915
}
914
916
915
- [ DockerAvailableFact ]
917
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
916
918
public void MultiArchStillAllowsSingleRIDUsingJustRIDProperties ( )
917
919
{
918
920
string imageName = NewImageName ( ) ;
@@ -985,9 +987,10 @@ private DirectoryInfo CreateNewProject(string template, [CallerMemberName] strin
985
987
private string GetPublishArtifactsPath ( string projectDir , string rid , string configuration = "Debug" )
986
988
=> Path . Combine ( projectDir , "bin" , configuration , ToolsetInfo . CurrentTargetFramework , rid , "publish" ) ;
987
989
990
+ /**
988
991
[InlineData("endtoendmultiarch-archivepublishing")]
989
992
[InlineData("myteam/endtoendmultiarch-archivepublishing")]
990
- [ DockerIsAvailableAndSupportsArchTheory ( "linux/arm64" , checkContainerdStoreAvailability : true ) ]
993
+ [DockerIsAvailableAndSupportsArchTheory(Skip = "https://github.com/dotnet/sdk/issues/49502", "linux/arm64", checkContainerdStoreAvailability: true)]
991
994
public void EndToEndMultiArch_ArchivePublishing(string imageName)
992
995
{
993
996
string tag = "1.0";
@@ -1054,6 +1057,7 @@ public void EndToEndMultiArch_ArchivePublishing(string imageName)
1054
1057
// Cleanup
1055
1058
newProjectDir.Delete(true);
1056
1059
}
1060
+ */
1057
1061
1058
1062
[ DockerIsAvailableAndSupportsArchFact ( "linux/arm64" , checkContainerdStoreAvailability : true ) ]
1059
1063
public void EndToEndMultiArch_RemoteRegistry ( )
@@ -1381,7 +1385,7 @@ public void EndToEndMultiArch_Labels()
1381
1385
[ DockerSupportsArchInlineData ( "linux/386" , "linux-x86" , "/app" , Skip = "There's no apphost for linux-x86 so we can't execute self-contained, and there's no .NET runtime base image for linux-x86 so we can't execute framework-dependent." ) ]
1382
1386
[ DockerSupportsArchInlineData ( "windows/amd64" , "win-x64" , "C:\\ app" ) ]
1383
1387
[ DockerSupportsArchInlineData ( "linux/amd64" , "linux-x64" , "/app" ) ]
1384
- [ DockerAvailableTheory ( ) ]
1388
+ [ DockerAvailableTheory ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
1385
1389
public async Task CanPackageForAllSupportedContainerRIDs ( string dockerPlatform , string rid , string workingDir )
1386
1390
{
1387
1391
ILogger logger = _loggerFactory . CreateLogger ( nameof ( CanPackageForAllSupportedContainerRIDs ) ) ;
@@ -1432,7 +1436,7 @@ static string[] DecideEntrypoint(string rid, string appName, string workingDir)
1432
1436
}
1433
1437
}
1434
1438
1435
- [ DockerAvailableFact ]
1439
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
1436
1440
public async void CheckDownloadErrorMessageWhenSourceRepositoryThrows ( )
1437
1441
{
1438
1442
var loggerFactory = new TestLoggerFactory ( _testOutput ) ;
0 commit comments