Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 233 Bytes

File metadata and controls

13 lines (12 loc) · 233 Bytes

conveyor

Define and execute pipelines as code

conveyor("Pipeline",
  defaultStage("Build",
    job("Job 1",
      gitClone("https://github.com/Davetron/conveyor.git"),
      maven("clean install")
    )
  )
).start();