cci 0.0.1

Control your CI/CD
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Jenkins uses Groovy syntax, not YAML, so we'll generate it as a string template
// This is a simplified representation

#[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>,
}