You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
325 B

(ns wanijo-pipeline.pipeline
(:use [lambdacd.steps.control-flow]
[wanijo-pipeline.steps])
(:require
[lambdacd.steps.manualtrigger :as manualtrigger]))
(def pipeline-def
`((either
manualtrigger/wait-for-manual-trigger
wait-for-repo)
(with-workspace
clone
compile
test)))