This repository was archived by the owner on Jun 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsample_pipeline.clj
56 lines (48 loc) · 2.22 KB
/
sample_pipeline.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
(ns lambdacd-artifacts.sample-pipeline
(:use [compojure.core]
[lambdacd.steps.control-flow])
(:require [lambdacd.steps.shell :as shell]
[lambdacd.steps.manualtrigger :as manualtrigger]
[lambdacd.core :as lambdacd]
[ring.server.standalone :as ring-server]
[lambdacd-artifacts.test-utils :as test-utils]
[lambdacd.ui.core :as ui]
[lambdacd.steps.git :as git]
[lambdacd.stepsupport.chaining :as step-support :refer [injected-ctx injected-args]]
[lambdacd.runners :as runners]
[lambdacd-artifacts.core :as artifacts]
[ring.util.response :as resp]))
(defn ^{ :display-type :container} with-git [& steps]
(git/with-git "[email protected]:flosell/lambdacd-artifacts" steps))
(defn produce-output [args ctx]
(shell/bash ctx (:cwd args)
"lein test2junit"
"exit 1"))
(defn some-build-step [args ctx]
(step-support/always-chaining args ctx
(produce-output injected-args injected-ctx)
(artifacts/publish-artifacts injected-args injected-ctx
(:cwd injected-args) [#"test2junit/.*"
"testdata/clojure-icon.gif"])))
(defn wait-for-interaction [args ctx]
(manualtrigger/wait-for-manual-trigger nil ctx))
(def pipeline-structure `(
(run wait-for-interaction)
(with-git
some-build-step)))
(def artifacts-path-context "/artifacts")
(defn mk-routes [pipeline-routes artifacts]
(routes
(GET "/" [] (resp/redirect "pipeline/"))
(context "/pipeline" [] pipeline-routes)
(context artifacts-path-context [] artifacts)))
(defn -main [& args]
(let [home-dir (if (not (empty? args)) (first args) (test-utils/create-temp-dir))
config {:home-dir home-dir
:artifacts-path-context artifacts-path-context}
pipeline (lambdacd/assemble-pipeline pipeline-structure config)]
(runners/start-one-run-after-another pipeline)
(ring-server/serve (mk-routes (ui/ui-for pipeline)
(artifacts/artifact-handler-for pipeline))
{:open-browser? true
:port 8081})))