File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 - checkout
99 - restore_cache :
1010 key : dependency-cache-{{ checksum "project.clj" }}
11- - run : lein with-profile dev test-clj-all
11+ - run : lein with-profile dev,1.9 test-clj
1212 - save_cache :
1313 key : dependency-cache-{{ checksum "project.clj" }}
1414 paths :
2222 - checkout
2323 - restore_cache :
2424 key : dependency-cache-{{ checksum "project.clj" }}
25- - run : lein with-profile dev,1.10 test-clj-all
25+ - run : lein with-profile dev test-clj
2626 - save_cache :
2727 key : dependency-cache-{{ checksum "project.clj" }}
2828 paths :
Original file line number Diff line number Diff line change 11{
22 "name" : " datascript" ,
3- "version" : " 0.17.1 " ,
3+ "version" : " 0.18.0 " ,
44 "description" : " Immutable in-memory triplestore with Datalog queries" ,
55 "homepage" : " https://github.com/tonsky/datascript" ,
66 "author" : " Nikita Prokopov (https://github.com/tonsky)" ,
Original file line number Diff line number Diff line change 11/**
2- * Datascript v0.17.1
2+ * Datascript v0.18.0
33 *
4- * Copyright 2014-2015 Nikita Prokopov
4+ * Copyright 2014-2019 Nikita Prokopov
55 *
66 * Licensed under Eclipse Public License;
77 * you may not use this file except in compliance with the License.
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ exec java -cp "$HOME/.m2/repository/org/clojure/clojure/1.8.0/clojure-1.8.0.jar"
2323(def ^:dynamic *env* {})
2424
2525(defn sh [& args]
26- (apply println " Running" (when-not (empty? *env*) (str :env " " *env*)) args)
26+ (apply println " Running" (if (empty? *env*) " " (str :env " " *env*)) args)
2727 (let [res (apply sh/sh (concat args [:env (merge (into {} (System/getenv )) *env*)]))]
2828 (if (== 0 (:exit res))
2929 (do
@@ -50,7 +50,7 @@ exec java -cp "$HOME/.m2/repository/org/clojure/clojure/1.8.0/clojure-1.8.0.jar"
5050
5151(defn run-tests []
5252 (println " \n\n [ Running tests ]\n " )
53- (sh " lein" " test-clj-all " )
53+ (sh " lein" " test-clj" )
5454 (sh " lein" " cljsbuild" " once" " advanced" " release" )
5555 (sh " node" " test_node.js" " --all" ))
5656
You can’t perform that action at this time.
0 commit comments