pipeline-cli 0.6.0

A build tools written by rust to build project and execute a serials of task.
1
2
3
4
5
6
pipeline("test"){
    step("t1"){
        env("Hello","123456")
        cmd("echo $Hello")
    }
}