Commit 71685aa 1 parent ac442c9 commit 71685aa Copy full SHA for 71685aa
File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
(ns tasks.ci
2
2
(:require [tasks.check :refer [check check*]]
3
- [tasks.test :refer [test test*]]
3
+ [tasks.test :refer [test test*] :as test ]
4
4
[tasks.tools :refer [clj]]))
5
5
6
6
(def ^:private commands
13
13
" -X:deploy" ])
14
14
15
15
(defn setup []
16
+ (test/setup )
16
17
(doseq [command commands] (clj " -Sforce" " -Spath" command)))
17
18
18
19
(defn ci
Original file line number Diff line number Diff line change 35
35
(install )
36
36
(cljs* (get-cljs-deps ) :portal.test-ui-runner ))
37
37
38
+ (defn- setup* [version]
39
+ (t/clj
40
+ " -Sforce" " -Spath" " -Sdeps"
41
+ (pr-str {:deps {'org.clojure/clojurescript {:mvn/version version}}})))
42
+
43
+ (defn setup []
44
+ (setup* " 1.10.773" )
45
+ (setup* " 1.10.844" ))
46
+
38
47
(defn cljs []
39
48
(cljs-runtime " 1.10.773" )
40
49
(cljs-runtime " 1.10.844" )
You can’t perform that action at this time.
0 commit comments