fix(launcher): require executable Linux hosts

This commit is contained in:
Erik 2026-08-14 19:12:32 +02:00
parent 10a712d66b
commit ae2cbbee8c
5 changed files with 134 additions and 10 deletions

View file

@ -116,6 +116,11 @@ public sealed class LauncherProjectBoundaryTests
Assert.Contains("-getProperty:SelfContained", workflow, StringComparison.Ordinal);
Assert.Contains("DOTNET_ROOT", workflow, StringComparison.Ordinal);
Assert.Contains("--verify-publish", workflow, StringComparison.Ordinal);
Assert.Contains(
"test -x src/AcDream.Headless/bin/Release/net10.0/acdream-headless",
workflow,
StringComparison.Ordinal);
Assert.Contains("test -x \"$root/AcDream.App\"", workflow, StringComparison.Ordinal);
}
private static string EvaluateProperty(string projectPath, string property)