Skip to content
Beskid Platform specification

Beskid

Jump to a Beskid service

Beskid

Jump to a Beskid service

Build and run orchestration - Verification and traceability

Platform spec article

Build and run orchestration - Verification and traceability

Spec standingStandard

Owner
Piotr Mikstacki
Submitter
Piotr Mikstacki

This article documents verification and traceability for build and run orchestration in the reference compiler.

For newcomers, this page explains where the contract shows up in day-to-day compiler work and which code paths are most useful first reads.

  • compiler/crates/beskid_cli/src/commands/ coordinates compile, run, and doc commands.
  • compiler/crates/beskid_engine/src/jit_module.rs executes JIT pipelines from compiled artifacts.
  • compiler/crates/beskid_tests/src/runtime/jit.rs and e2e fixtures verify orchestration behavior.
  • Prefer tracing from CLI/test entry points into analysis/codegen crates before changing internals.
  • Treat diagnostics and tests as part of the contract, not optional implementation details.
  • If behavior changes, update this article and add/adjust tests in compiler/crates/beskid_tests or compiler/crates/beskid_e2e_tests.