Skip to content

Commit

Permalink
Merge fd9c059 into 2af452b
Browse files Browse the repository at this point in the history
  • Loading branch information
ollelauribostrom committed Sep 5, 2018
2 parents 2af452b + fd9c059 commit 200f1b8
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -6,4 +6,5 @@
*.x86f
*~
.#*
system-index.txt
system-index.txt
.DS_Store
30 changes: 30 additions & 0 deletions .travis.yml
@@ -0,0 +1,30 @@
language: common-lisp
sudo: required

env:
global:
- PATH=~/.roswell/bin:$PATH
- ROSWELL_INSTALL_DIR=$HOME/.roswell
matrix:
- LISP=sbcl-bin COVERALLS=true
- LISP=allegro
- LISP=ecl
- LISP=clisp

cache:
directories:
- $HOME/.roswell

install:
# Install Roswell
- curl -L https://raw.githubusercontent.com/roswell/roswell/release/scripts/install-for-ci.sh | sh
- ros install prove

script:
- run-prove cl-dotenv-test.asd
- if [ "$LISP" = "sbcl" ]; then
ros -s prove -s cl-coveralls
-e '(or (coveralls:with-coveralls (:exclude (list "t"))
(prove:run :cl-dotenv-test))
(uiop:quit -1))';
fi

0 comments on commit 200f1b8

Please sign in to comment.