Vim window logic, slimv
This commit is contained in:
parent
babcc9e44b
commit
515847d07e
791 changed files with 51552 additions and 86 deletions
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
error=0
|
||||
if which sbcl; then
|
||||
echo "CI run using SBCL"
|
||||
sbcl --script run-tests.lisp
|
||||
error=$?
|
||||
fi
|
||||
|
||||
if which lx86cl64; then
|
||||
echo "CI run using CCL"
|
||||
lx86cl64 -b --load run-tests.lisp
|
||||
error=$(($error+$?))
|
||||
fi
|
||||
|
||||
exit $error
|
||||
Loading…
Add table
Add a link
Reference in a new issue