diff options
| author | Valentin Popov <valentin@popov.link> | 2026-06-23 22:27:47 +0300 |
|---|---|---|
| committer | Valentin Popov <valentin@popov.link> | 2026-06-23 22:27:47 +0300 |
| commit | 227d95fc49b0fbce93e61a0fb0fd647f33bed4bc (patch) | |
| tree | 979f6cc3d8c5921e60592e0f205045454609a91c /xtask | |
| parent | dceea70122276971532e0fecf22d2fbe71fdb897 (diff) | |
| download | fparkan-227d95fc49b0fbce93e61a0fb0fd647f33bed4bc.tar.xz fparkan-227d95fc49b0fbce93e61a0fb0fd647f33bed4bc.zip | |
feat: add Vulkan smoke runner entrypoint
Diffstat (limited to 'xtask')
| -rw-r--r-- | xtask/src/main.rs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/xtask/src/main.rs b/xtask/src/main.rs index dd58b53..8289123 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -807,7 +807,11 @@ fn validate_dependency_boundaries(root: &Path, failures: &mut Vec<String>) -> Re fn is_app_package(package: &str) -> bool { matches!( package, - "fparkan-cli" | "fparkan-game" | "fparkan-headless" | "fparkan-viewer" + "fparkan-cli" + | "fparkan-game" + | "fparkan-headless" + | "fparkan-vulkan-smoke" + | "fparkan-viewer" ) } @@ -1209,6 +1213,7 @@ const ALL_WORKSPACE_PACKAGES: &[&str] = &[ "fparkan-cli", "fparkan-game", "fparkan-headless", + "fparkan-vulkan-smoke", "fparkan-viewer", "xtask", ]; @@ -2087,6 +2092,7 @@ fn stage_packages(stage: u8) -> Result<&'static [&'static str], String> { "fparkan-runtime", "fparkan-headless", "fparkan-game", + "fparkan-vulkan-smoke", ]), _ => Err(format!("stage out of range: {stage}")), } |
