Skip to content

Commit

Permalink
Initial commit for cl-fixtures
Browse files Browse the repository at this point in the history
This commit adds a working start for fixtures in Common Lisp
  • Loading branch information
libre-man committed May 22, 2017
0 parents commit 1c48c70
Show file tree
Hide file tree
Showing 18 changed files with 1,449 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
*.fasl
*.dx32fsl
*.dx64fsl
*.lx32fsl
*.lx64fsl
*.x86f
*~
.#*
*.html
34 changes: 34 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
language: common-lisp

env:
global:
- PATH=~/.roswell/bin:~/nginx/sbin:$PATH
- LD_LIBRARY_PATH=$HOME/libuv/lib:$LD_LIBRARY_PATH
- ROSWELL_BRANCH=release
- ROSWELL_INSTALL_DIR=$HOME/.roswell
- COVERAGE_EXCLUDE=t
matrix:
- LISP=sbcl-bin COVERALLS=true
- LISP=ccl-bin
- LISP=abcl
- LISP=ecl
- LISP=clisp

install:
# Install Roswell
- curl -L https://raw.githubusercontent.com/snmsts/roswell/$ROSWELL_BRANCH/scripts/install-for-ci.sh | sh
- ros asdf install
- ros -e '(ql:update-all-dists :prompt nil)'
- ros install prove

cache:
directories:
- $HOME/.roswell
- $HOME/.config/common-lisp

before_script:
- ros --version
- ros config

script:
- run-prove cl-fixtures-test.asd
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.PHONY: clean docs

docs:
./docs/doc-parser.ros docs/README.org README.org

clean:
rm README.org
Loading

0 comments on commit 1c48c70

Please sign in to comment.