Make Travis run all of those. Also remove O/S update for libstdc++6 to see if Lumo version pinning is sufficient.
13 lines
283 B
Bash
Executable file
13 lines
283 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Assumes node.js/npm and lumo-cljs are installed!
|
|
# See .travis.yml for details of the test environment.
|
|
#
|
|
rm -rf test/readme.clj
|
|
if test "$1" = "all"
|
|
then
|
|
clj_test="test-all"
|
|
else
|
|
clj_test="test"
|
|
fi
|
|
lein do clean, check, eastwood, $clj_test, tach lumo, test-readme
|