Expand Android platform build coverage

This commit is contained in:
2026-06-05 00:14:04 +02:00
parent 841fbac8eb
commit 2feeffd6c8
8 changed files with 88 additions and 29 deletions

View File

@@ -23,6 +23,13 @@ REQUIRED_COMPONENT_TARGETS = [
"pano_cli",
]
REQUIRED_ANDROID_PRESETS = [
"android-arm64",
"android-x64",
"android-quest-arm64",
"android-focus-arm64",
]
def repo_root() -> Path:
return Path(__file__).resolve().parents[2]
@@ -52,6 +59,14 @@ def powershell_default_targets(root: Path) -> list[str]:
return sorted(set(targets))
def powershell_default_presets(root: Path) -> list[str]:
script = (root / "scripts" / "automation" / "platform-build.ps1").read_text(encoding="utf-8")
match = re.search(r"\[string\[\]\]\$Presets\s*=\s*@\((.*?)\)", script, re.S)
if not match:
raise RuntimeError("Could not find default presets in platform-build.ps1")
return sorted(set(re.findall(r'"([^"]+)"', match.group(1))))
def shell_default_targets(root: Path) -> list[str]:
script = root / "scripts" / "automation" / "platform-build.sh"
text = script.read_text(encoding="utf-8")
@@ -61,6 +76,14 @@ def shell_default_targets(root: Path) -> list[str]:
return sorted(set(match.group(1).split()))
def shell_default_presets(root: Path) -> list[str]:
script = (root / "scripts" / "automation" / "platform-build.sh").read_text(encoding="utf-8")
match = re.search(r'presets="\$\{[^:]+:-(.*)\}"', script)
if not match:
raise RuntimeError("Could not find default presets in platform-build.sh")
return sorted(set(match.group(1).split()))
def missing(expected: list[str], actual: list[str]) -> list[str]:
actual_set = set(actual)
return [target for target in expected if target not in actual_set]
@@ -71,15 +94,24 @@ def main() -> int:
expected = sorted(set(REQUIRED_COMPONENT_TARGETS + cmake_test_targets(root)))
ps_targets = powershell_default_targets(root)
sh_targets = shell_default_targets(root)
ps_presets = powershell_default_presets(root)
sh_presets = shell_default_presets(root)
result = {
"ok": True,
"expectedTargetCount": len(expected),
"powershellTargetCount": len(ps_targets),
"shellTargetCount": len(sh_targets),
"expectedAndroidPresets": REQUIRED_ANDROID_PRESETS,
"defaultPresets": {
"platform-build.ps1": ps_presets,
"platform-build.sh": sh_presets,
},
"missing": {
"platform-build.ps1": missing(expected, ps_targets),
"platform-build.sh": missing(expected, sh_targets),
"platform-build.ps1.targets": missing(expected, ps_targets),
"platform-build.sh.targets": missing(expected, sh_targets),
"platform-build.ps1.presets": missing(REQUIRED_ANDROID_PRESETS, ps_presets),
"platform-build.sh.presets": missing(REQUIRED_ANDROID_PRESETS, sh_presets),
},
}
result["ok"] = all(not values for values in result["missing"].values())