Skip to content

Latest commit

 

History

History
46 lines (39 loc) · 2.04 KB

File metadata and controls

46 lines (39 loc) · 2.04 KB

Services

The orchestrator provides composable services that work with any engine and any provider.

Overview

flowchart TD
  A["Input Parsing<br/>GitHub Actions / CLI / env"] --> B["Engine Plugin<br/>Resolve cache folders & hooks"]
  B --> C["Provider Selection<br/>providerStrategy → backend"]
  C --> D["Resource Provisioning<br/>CloudFormation / K8s Jobs / Docker"]
  D --> E["Build Execution<br/>Launch container with project"]
  E --> F["Hook Execution<br/>pre/post-build hooks & middleware"]
  F --> G["Log Streaming<br/>Real-time output"]
  G --> H["Result Collection<br/>Artifacts, test results"]
  H --> I["Cleanup<br/>Tear down or retain workspace"]
Loading

Service Reference

Service Description
Cache Engine-aware asset caching with local cache layer and retained workspaces
Hooks Container hooks (pre/post-build), command hooks, and trigger-aware middleware pipeline
Sync Incremental file sync — transfer only changed files to build containers
Hot Runner Keep build environments warm between builds for sub-minute iteration
Reliability Automatic retries, health checks, git integrity verification, provider fallback
Output Artifact collection with pluggable upload handlers
Test Workflow Structured test execution with result parsing and reporting
LFS Git LFS tracking, hashing, and storage path mapping
Core Logging, resource tracking, workspace locking, log streaming

Source Layout

src/model/orchestrator/services/
├── cache/         # Engine-aware cache, child workspaces
├── hooks/         # Container hooks, command hooks, middleware
├── hot-runner/    # Hot runner protocol
├── lfs/           # Git LFS agent
├── output/        # Artifact management, upload handlers
├── reliability/   # Build retry, health checks
├── sync/          # Incremental file sync
├── test-workflow/ # Test execution and reporting
└── core/          # Logging, resource tracking, workspace locking