MCPcopy Create free account
hub / github.com/FastLED/FastLED / _build_fbuild_compile_many

Method _build_fbuild_compile_many

ci/compiler/pio.py:525–535  ·  view source on GitHub ↗

Build examples with one ``fbuild compile-many`` invocation.

(
        self, examples: list[str]
    )

Source from the content-addressed store, hash-verified

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."""

Callers 1

_build_fbuildMethod · 0.95

Calls 1

_build_fbuild_batchMethod · 0.95

Tested by

no test coverage detected