#[derive(Debug, Clone, PartialEq)]
pub struct JenkinsConfig {
pub agent: String,
pub environment: Vec<(String, String)>,
pub stages: Vec<JenkinsStage>,
}
#[derive(Debug, Clone, PartialEq)]
pub struct JenkinsStage {
pub name: String,
pub steps: Vec<String>,
}