-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add 1.1.230 to changelog * stop testing against clojure 1.8 (since official matrix test doesn't include it anyway) Signed-off-by: Sean Corfield <[email protected]>
- Loading branch information
1 parent
edb64e9
commit 4831a7c
Showing
4 changed files
with
26 additions
and
4 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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/sh | ||
|
||
for v in 9 10 11 12 | ||
do | ||
echo "" | ||
echo "Running tests for Clojure 1.$v..." | ||
clojure -M:test:runner:1.$v | ||
if [ $? -ne 0 ]; then | ||
echo "Tests failed for Clojure 1.$v" | ||
exit 1 | ||
fi | ||
done | ||
|
||
echo "" | ||
echo "Running tests for ClojureScript..." | ||
clojure -M:test:cljs-runner | ||
if [ $? -ne 0 ]; then | ||
echo "Tests failed for ClojureScript" | ||
exit 1 | ||
fi |