(runtime: &str)
| 61 | } |
| 62 | |
| 63 | fn ensure_builder_image(runtime: &str) -> Result<(), Box<dyn std::error::Error>> { |
| 64 | if !image_exists(runtime) { |
| 65 | build_builder_image(runtime)?; |
| 66 | } |
| 67 | Ok(()) |
| 68 | } |
| 69 | |
| 70 | fn compile_in_container( |
| 71 | runtime: &str, |
no test coverage detected