-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update dependencies; add simpler cljs testing
Signed-off-by: Sean Corfield <[email protected]>
- Loading branch information
1 parent
8d04d6d
commit 01fb301
Showing
4 changed files
with
31 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
target | ||
.calva/repl.calva-repl | ||
.clj-kondo/.cache/ | ||
.cpcache/ | ||
.lein* | ||
.lsp/.cache/ | ||
.nrepl-port | ||
.portal/vs-code.edn | ||
cljs-test-runner-out/ | ||
lib | ||
multi-lib | ||
.cpcache/ | ||
target | ||
target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
#!/bin/sh | ||
|
||
versions="1.7 1.8 1.9 1.10 1.11 1.12" | ||
time clojure -M:test:runner-1.7:1.7 | ||
versions="1.8 1.9 1.10 1.11 1.12" | ||
for v in $versions | ||
do | ||
time clj -M:test:runner:$v | ||
time clojure -M:test:runner:$v | ||
done | ||
time clojure -M:test:cljs-runner |