Build examples with one ``fbuild compile-many`` invocation.
(
self, examples: list[str]
)
| 523 | return staged_projects |
| 524 | |
| 525 | def _build_fbuild_compile_many( |
| 526 | self, examples: list[str] |
| 527 | ) -> list[Future[SketchResult]]: |
| 528 | """Build examples with one ``fbuild compile-many`` invocation.""" |
| 529 | from ci.util.fbuild_runner import run_fbuild_compile_many |
| 530 | |
| 531 | return self._build_fbuild_batch( |
| 532 | examples=examples, |
| 533 | command_label="compile-many", |
| 534 | run_batch=run_fbuild_compile_many, |
| 535 | ) |
| 536 | |
| 537 | def _build_fbuild_ci(self, examples: list[str]) -> list[Future[SketchResult]]: |
| 538 | """Build examples with one ``fbuild ci`` invocation.""" |
no test coverage detected