a1da093176
metadata - Rename env vars WS_* to HBW_* for consistency - Add PluginMetadata struct and PluginType enum for typed plugin info - Support manifest.yml files for external plugin discovery - Add shell/rhai/dylib plugin stubs with proper type signatures - Implement shallow argument merge for plugin runtime arguments
7 lines
311 B
Rust
7 lines
311 B
Rust
pub const DEFAULT_WORKSPACE: &str = "/workspace";
|
|
pub const BOOTSTRAP_SCRIPT_PATH: &str = "/bootstrap.sh";
|
|
pub const BAKE_SCRIPT_PATH: &str = "bake.sh";
|
|
pub const PIPELINE_SKIP_ERRORCODE: u8 = 233;
|
|
pub const TRIVIAL_SCRIPT_NAME: &str = "BAKE_TRIVIAL";
|
|
pub const FINALIZE_PLUGIN_MANIFEST: &str = "manifest.yml";
|