(args: &[String])
| 912 | } |
| 913 | |
| 914 | fn run_asset_smoke_tests(args: &[String]) -> Result<()> { |
| 915 | if let Some(arg) = args.first() { |
| 916 | bail!("unknown assets smoke flag: {arg}"); |
| 917 | } |
| 918 | run_validate_script("runtime") |
| 919 | } |
| 920 | |
| 921 | fn stage_release_workspace() -> Result<()> { |
| 922 | let stage_root = Path::new(RELEASE_STAGE_DIR); |
no test coverage detected