You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Test.Microsoft.NET.Build.Containers.Filesystem/EndToEnd.cs
+15-9Lines changed: 15 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -276,17 +276,23 @@ public async Task EndToEnd_NoAPI()
276
276
privateNuGetAssets.Delete(true);
277
277
}
278
278
279
-
[DataRow("linux-arm",false,"/app","linux/arm/v7")]// packaging framework-dependent because emulating arm on x64 Docker host doesn't work
280
-
//[DataRow("linux-x86", false, "/app", "linux/386")] // packaging framework-dependent because missing runtime packs for x86 linux. // MS doesn't ship a linux-x86 image
281
-
[DataRow("linux-arm64",false,"/app","linux/arm64/v8")]// packaging framework-dependent because emulating arm64 on x64 Docker host doesn't work
282
-
[DataRow("win-x64",true,"C:\\app","windows/amd64")]// packaging self-contained because Windows containers can't run on Linux hosts
279
+
// These two are commented because the Github Actions runers don't let us easily configure the Docker Buildx config -
280
+
// we need to configure it to allow emulation of other platforms on amd64 hosts before these two will run.
281
+
// They do run locally, however.
282
+
283
+
//[DataRowAttribute("linux-arm", false, "/app", "linux/arm/v7")] // packaging framework-dependent because emulating arm on x64 Docker host doesn't work
284
+
//[DataRowAttribute("linux-arm64", false, "/app", "linux/arm64/v8")] // packaging framework-dependent because emulating arm64 on x64 Docker host doesn't work
285
+
286
+
// this one should be skipped in all cases because we don't ship linux-x86 runtime packs, so we can't execute the 'apphost' version of the app
287
+
//[DataRowAttribute("linux-x86", false, "/app", "linux/386")] // packaging framework-dependent because missing runtime packs for x86 linux.
288
+
289
+
// This one should be skipped because containers can't be configured to run on Linux hosts :(
0 commit comments