-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathbuild.clj
More file actions
166 lines (134 loc) · 5.72 KB
/
build.clj
File metadata and controls
166 lines (134 loc) · 5.72 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
(ns build
"Noj's build script.
clojure -T:build ci
clojure -T:build deploy
Run tests via:
clojure -X:test
For more information, run:
clojure -A:deps -T:build help/doc"
(:refer-clojure :exclude [test])
(:require [clojure.tools.build.api :as b]
[deps-deploy.deps-deploy :as dd]))
(def lib 'org.scicloj/noj)
(def version "2-beta24")
(def snapshot (str version "-SNAPSHOT"))
(def class-dir "target/classes")
(defn test "Run all the tests." [opts]
(let [opts (or opts {})
basis (b/create-basis {:aliases (concat (opts :aliases [:test]))})
cmds (b/java-command
{:basis basis
:main 'clojure.main
:main-args ["-m" "kaocha.runner"
":tests"]}
)
{:keys [exit]} (b/process cmds)]
(when-not (zero? exit) (throw (ex-info "Tests failed" {}))))
opts)
(defn- pom-template [version]
[[:description "A Clojure framework for data science"]
[:url "https://scicloj.github.io/noj/"]
[:licenses
[:license
[:name "Eclipse Public License - v 2.0"]
[:url "https://www.eclipse.org/legal/epl-2.0/"]]]])
(defn- jar-opts [opts]
(let [version (if (:snapshot opts) snapshot version)]
(assoc opts
:lib lib :version version
:jar-file (format "target/%s-%s.jar" lib version)
:basis (b/create-basis {})
:class-dir class-dir
:target "target"
:src-dirs ["src"]
:pom-data (pom-template version))))
(defn generate-tests [_]
(let [basis (b/create-basis {:aliases [:gen-tests :model-integration-tests :test]})
cmds (b/java-command
{:basis basis
:main 'clojure.main
:main-args ["-e" "(require '[gen-tests])(gen-tests/do-generate-tests)(System/exit 0)"]})
{:keys [exit]} (b/process cmds)]
(when-not (zero? exit) (throw (ex-info "Tests generation failed" {})))))
(def opts {})
(defn models-integration-tests "Run integration tests." [opts]
(let [basis (b/create-basis {:aliases [:model-integration-tests]})
cmds (b/java-command
{:basis basis
:main 'clojure.main
:main-args ["-m" "kaocha.runner"
":integration-tests" ]})
{:keys [exit]} (b/process cmds)]
(when-not (zero? exit) (throw (ex-info "Integration tests failed" {}))))
opts)
(defn ci "Run the CI pipeline of tests (and build the JAR)." [opts]
(models-integration-tests nil)
(generate-tests nil)
(test (assoc opts :aliases [:dev :test]))
(b/delete {:path "target"})
(let [opts (jar-opts opts)]
(println "\nWriting pom.xml...")
(b/write-pom opts)
(println "\nCopying source...")
(b/copy-dir {:src-dirs ["resources" "src"] :target-dir class-dir})
(println "\nBuilding" (:jar-file opts) "...")
(b/jar opts))
opts)
(defn deploy "Deploy the JAR to Clojars." [opts]
(let [{:keys [jar-file] :as opts} (jar-opts opts)]
(dd/deploy {:installer :remote :artifact (b/resolve-path jar-file)
:pom-file (b/pom-path (select-keys opts [:lib :class-dir]))}))
opts)
(def uber-file-clojupyter (format "target/%s-%s-clojupyter.jar" (name lib) version))
(def uber-file-clay (format "target/%s-%s-clay.jar" (name lib) version))
(def clojupyter-indent (str "noj-clojupyter-" version))
(defn create-uber-clojupyter "Create uber with clojupyter + noj" [opts]
(let [basis (b/create-basis {:aliases [:clojupyter]})]
(println "\nCompiling ...")
(b/compile-clj {:basis basis
:ns-compile '[clojupyter.kernel.core
clojupyter.cmdline]
:class-dir class-dir})
(println "\nBuilding" uber-file-clojupyter "...")
(b/uber {:uber-file uber-file-clojupyter
:class-dir "target/classes"
;;:conflict-handlers {:default :warn }
:basis basis
:main 'clojupyter.cmdline
:exclusion ["org.scicloj/clay"]})))
(defn create-uber-clay "Create uber with noj incl clay" [opts]
(let [basis (b/create-basis {:aliases [:uber-clay]})]
(println "\nCompiling ...")
(b/compile-clj {:basis basis
:ns-compile '[scicloj.clay.v2.main]
:class-dir class-dir})
(println "\nBuilding" uber-file-clay "...")
(b/uber {:uber-file uber-file-clay
:class-dir "target/classes"
;;:conflict-handlers {:default :warn }
:basis basis
:main 'scicloj.clay.v2.main})))
(defn- clojupyter-command [main-args command]
(let [basis (b/create-basis {:aliases [:clojupyter]})
cmds (b/java-command
{:basis basis
:main 'clojure.main
:main-args main-args})
{:keys [exit]} (b/process cmds)]
(when-not (zero? exit) (throw (ex-info (format "%s clojupyter kernel failed" command) {}))))
)
(defn install-clojupyter-kernel "Install clojupyter kernel in local Jupyter" [opts]
(clojupyter-command ["-m" "clojupyter.cmdline"
"install"
"--ident" (str "noj-jupyter-" version)
"--jarfile" uber-file-clojupyter]
"install")
)
(defn remove-clojupyter-kernel "Remove clojupyter kernel from local Jupyter" [opts]
(clojupyter-command ["-m" "clojupyter.cmdline"
"remove-install"
(str "noj-jupyter-" version)]
"remove"))
(defn replace-clojupyter-kernel "Replaces local clojupyter kernel in local Jupyter" [opts]
(remove-clojupyter-kernel nil)
(install-clojupyter-kernel nil))