Adds a declarative workflow system where .ontology/workflow.ncl declares
independent layers (commit-fast, ci-standard, ci-exhaustive), each with a
trigger and a set of providers. The generator materialises Woodpecker YAML,
justfile recipes, and pre-commit hook stubs from that single declaration.
Layers form a set, not a chain — no layer depends on another at the
declaration level. Woodpecker steps express fine-grained parallelism
internally (lint → test/docs/build).
Schema and catalog:
- reflection/schemas/workflow.ncl — types, contracts, provider constructors
- reflection/defaults/workflow.ncl — standard Rust/Nushell/Nickel catalog
(14 validations, 4 builds)
Generator (ore workflow generate):
- PreCommit: prints hook fragments for manual merge into .pre-commit-config.yaml
- Woodpecker: writes per-layer YAML with image selection, tool installs,
depends_on chains, and CI-aware command translation
(nu --ide-check → find+xargs; markdownlint-cli2 → node:lts image)
- Justfile: single justfiles/workflow.just aggregated from all Justfile layers
(hoisted out of per-provider loop — was writing N times, now once)
Dispatcher: ore workflow validate|list|generate|diff + ore wf v|l|gen|diff
Cargo/nextest profiles:
- .cargo/config.toml: [profile.ci-test] (debug=0, no-incremental) and
[profile.ci] (line-tables-only) — shared by test + docs hooks to reuse
.rlib artifacts; CI retains actionable backtraces
- .config/nextest.toml: ci-test (fail-fast, no retries) and ci (all failures,
one retry)
Pre-commit: nextest run with --profile ci-test --cargo-profile ci-test;
docs-links hook shares same profile to reuse artifacts
Self-application: ontoref declares its own workflow in .ontology/workflow.ncl
and the generated .woodpecker/ files are the authoritative CI definition
Migration 0014: checks workflow.ncl + both cargo and nextest profiles present
Adoption: reflection/templates/ontology/workflow.ncl stub + install_workflow
confirm in adopt_ontoref form + step 5 in adoption script template
95 lines
2.2 KiB
TOML
95 lines
2.2 KiB
TOML
# Generated by dev-system/ci
|
|
# Cargo configuration for build and compilation settings
|
|
|
|
[build]
|
|
# Number of parallel jobs for compilation
|
|
jobs = 4
|
|
|
|
# Code generation backend
|
|
# codegen-backend = "llvm"
|
|
|
|
[profile.dev]
|
|
# Development profile - fast compilation, debug info
|
|
opt-level = 0
|
|
debug = true
|
|
debug-assertions = true
|
|
overflow-checks = true
|
|
lto = false
|
|
panic = "unwind"
|
|
incremental = true
|
|
|
|
[profile.clippy]
|
|
# Lint-only profile: no debug info, no codegen — clippy only needs MIR/HIR.
|
|
# Used by pre-commit to avoid bloating target/debug with DWARF/dSYM artifacts.
|
|
inherits = "dev"
|
|
debug = 0
|
|
incremental = true
|
|
|
|
[profile.release]
|
|
# Release profile - slow compilation, optimized binary
|
|
opt-level = 3
|
|
debug = false
|
|
debug-assertions = false
|
|
overflow-checks = false
|
|
lto = "thin"
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
incremental = false
|
|
strip = false
|
|
|
|
[profile.test]
|
|
# Test profile - inherits from dev but can be optimized
|
|
opt-level = 1
|
|
debug = true
|
|
debug-assertions = true
|
|
overflow-checks = true
|
|
lto = false
|
|
incremental = true
|
|
|
|
[profile.ci-test]
|
|
# Pre-commit profile: no debug info, no incremental.
|
|
# Shared by rust-test and docs-links hooks so both reuse the same .rlib artifacts.
|
|
# debug = 0 removes DWARF/dSYM — halves binary size without affecting correctness.
|
|
inherits = "test"
|
|
debug = 0
|
|
incremental = false
|
|
|
|
[profile.ci]
|
|
# CI pipeline profile: line-tables-only debug for useful backtraces on remote failures.
|
|
# Distinct from ci-test (debug=0): CI failures must show file:line to be actionable.
|
|
inherits = "test"
|
|
debug = "line-tables-only"
|
|
incremental = false
|
|
|
|
[profile.bench]
|
|
# Benchmark profile - same as release
|
|
opt-level = 3
|
|
debug = false
|
|
debug-assertions = false
|
|
overflow-checks = false
|
|
lto = "thin"
|
|
codegen-units = 1
|
|
incremental = false
|
|
|
|
[term]
|
|
# Terminal colors
|
|
color = "auto"
|
|
verbose = false
|
|
progress.when = "auto"
|
|
progress.width = 80
|
|
|
|
[net]
|
|
# Network settings
|
|
git-fetch-with-cli = true
|
|
offline = false
|
|
|
|
# Strict version requirements for dependencies
|
|
# force-non-semver-pre = true
|
|
|
|
[alias]
|
|
# Custom cargo commands
|
|
build-all = "build --all-targets"
|
|
check-all = "check --all-targets --all-features"
|
|
test-all = "test --all-features --workspace"
|
|
doc-all = "doc --all-features --no-deps --open"
|
|
doc-json = "doc --no-deps -- -Z unstable-options --output-format json"
|