Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 28 additions & 15 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
language: common-lisp
sudo: required

env:
global:
- PATH=~/.roswell/bin:$PATH
- ROSWELL_BRANCH=master
- ROSWELL_INSTALL_DIR=$HOME/.roswell
- COVERAGE_EXCLUDE=t
matrix:
- LISP=sbcl COVERALLS=true
- LISP=sbcl-bin COVERALLS=true

install:
# Install cl-travis
- curl https://raw.githubusercontent.com/luismbo/cl-travis/master/install.sh | bash
# Coveralls support
# Roswell & coveralls
- curl -L https://raw.githubusercontent.com/snmsts/roswell/$ROSWELL_BRANCH/scripts/install-for-ci.sh | sh
- git clone https://github.com/fukamachi/cl-coveralls ~/lisp/cl-coveralls
# Clone some libraries
- git clone https://github.com/CommonDoc/common-doc.git ~/lisp/common-doc
Expand All @@ -21,17 +24,27 @@ install:
- git clone https://github.com/mmontone/djula.git ~/lisp/djula
- git clone https://github.com/eudoxia0/docparser.git ~/lisp/docparser

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

before_script:
- ros --version
- ros config

script:
- cl -l fiveam -l cl-coveralls
-e '(setf fiveam:*debug-on-error* t
fiveam:*debug-on-failure* t)'
-e '(setf *debugger-hook*
(lambda (c h)
(declare (ignore c h))
(uiop:quit -1)))'
-e '(coveralls:with-coveralls (:exclude (list "t" "src/error.lisp"))
(ql:quickload :codex-templates)
(ql:quickload :codex-test))'
- ros -e '(ql:quickload (list :fiveam :cl-coveralls))'
-e '(setf fiveam:*debug-on-error* t
fiveam:*debug-on-failure* t)'
-e '(setf *debugger-hook*
(lambda (c h)
(declare (ignore c h))
(uiop:quit -1)))'
-e '(coveralls:with-coveralls (:exclude (list "t" "src/error.lisp"))
(ql:quickload :codex-templates)
(ql:quickload :codex-test))'
-q

notifications:
email:
Expand Down