Skip to content

Commit 7c9d8cb

Browse files
committed
upd CircleCI
1 parent f763d01 commit 7c9d8cb

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
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:
@@ -22,7 +22,7 @@ jobs:
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:

release-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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)",

release-js/wrapper.prefix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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.

release.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)