0.5.1-pre.006

This commit is contained in:
2026-08-10 02:44:24 +02:00
parent b6a286a4df
commit 34a670eaec
72 changed files with 5589 additions and 1932 deletions

View File

@@ -1,5 +1,5 @@
// file: ks-pipeline-demo-scenarios/src/metadata/metaplex_token_metadata/use_campaign.rs
// version: 4
// version: 5
//! Bounded Devnet availability probe for the current Metaplex `Use` surface.
@@ -425,13 +425,16 @@ mod tests {
let path = std::path::PathBuf::from(value);
if path.is_absolute() { path } else { workspace_root.join(path) }
},
std::result::Result::Err(_) => workspace_root.join("config/app.config.json"),
std::result::Result::Err(_) => {
workspace_root.join("config/ks-pipeline-demo-scenarios.default.config.json")
},
};
let config = ks_config::read_config_json_file_with_environment(
let composed = ks_config::read_composed_app_config_with_environment(
config_path.as_path(),
workspace_root,
)
.unwrap_or_else(|error| panic!("Devnet configuration loading failed: {error}"));
let config = composed.app_config;
let profile_name = std::env::var("KS_DEVNET_PROFILE").ok();
let mut profile = crate::resolve_demo_devnet_profile(&config, profile_name.as_deref())
.unwrap_or_else(|error| panic!("Devnet profile resolution failed: {error}"));