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
51 lines
1.5 KiB
YAML
51 lines
1.5 KiB
YAML
# Generated by ore workflow generate — layer: ci-standard
|
|
# Source: .ontology/workflow.ncl
|
|
# Do not edit manually — regenerate with: ore workflow generate --layer ci-standard
|
|
|
|
when:
|
|
event: [push, pull_request, manual]
|
|
|
|
steps:
|
|
rust-clippy-all:
|
|
image: rust:latest
|
|
commands:
|
|
- cargo clippy --all-targets --all-features -- -D warnings
|
|
|
|
nickel-typecheck:
|
|
image: rust:latest
|
|
commands:
|
|
- cargo install nickel-lang-cli --locked
|
|
- nickel typecheck
|
|
|
|
nushell-check:
|
|
image: rust:latest
|
|
commands:
|
|
- cargo install nu --locked
|
|
- find . -name '*.nu' ! -path '*/target/*' -print0 | xargs -0 -I\{\} nu --ide-check 100 \{\}
|
|
|
|
nextest-ci:
|
|
image: rust:latest
|
|
commands:
|
|
- cargo install cargo-nextest --locked
|
|
- cargo nextest run --all-features --workspace --profile ci --cargo-profile ci
|
|
depends_on: ["rust-clippy-all", "nickel-typecheck", "nushell-check"]
|
|
environment:
|
|
RUST_BACKTRACE: 1
|
|
|
|
deny-subset:
|
|
image: rust:latest
|
|
commands:
|
|
- cargo install cargo-deny --locked
|
|
- cargo deny check licenses advisories
|
|
|
|
docs-check:
|
|
image: rust:latest
|
|
commands:
|
|
- RUSTDOCFLAGS="-D rustdoc::broken-intra-doc-links -D rustdoc::private-intra-doc-links" cargo doc --no-deps --workspace --profile ci -q
|
|
depends_on: ["rust-clippy-all", "nickel-typecheck", "nushell-check"]
|
|
|
|
build-release-native:
|
|
image: rust:latest
|
|
commands:
|
|
- cargo build --release --workspace
|
|
depends_on: ["rust-clippy-all", "nickel-typecheck", "nushell-check"]
|