Skip to content

inherd/jenkinsfile

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jenkinsfile

Docs Crates.io Crates.io

a tools to convert Jenkinsfile to data struct.

Usage:

let jenkinsfile = Jenkinsfile::from_str(code).unwrap();

Struct

#[derive(Debug, PartialEq, Eq, Clone)]
pub struct Jenkinsfile {
    pub name: String,
    pub stages: Vec<JenkinsStage>,
    pub post: Vec<PostConfig>,       // todo
}

#[derive(Debug, PartialEq, Eq, Clone)]
pub struct JenkinsStage {
    pub name: String,
    pub steps: Vec<String>,
    pub is_parallel: bool,
    pub sub_stages: Vec<JenkinsStage>,
}

LICENSE

code based on Jenkins Declarative Parser with LGPL 3.0

@ 2020~2021 This code is distributed under the LGPL 3.0 license. See LICENSE in this directory.

About

a tools to convert Jenkinsfile to data struct.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages