This repository has been archived by the owner on Jan 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.travis.yml
50 lines (44 loc) · 1.71 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
language: common-lisp
env:
global:
- PATH=~/.roswell/bin:$PATH
- ROSWELL_BRANCH=master
- ROSWELL_INSTALL_DIR=$HOME/.roswell
- COVERAGE_EXCLUDE=t
matrix:
- LISP=sbcl-bin COVERALLS=true
install:
# 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
- git clone https://github.com/CommonDoc/common-doc-plump.git ~/lisp/common-doc-plump
- git clone https://github.com/CommonDoc/common-html.git ~/lisp/common-html
- git clone https://github.com/CommonDoc/vertex.git ~/lisp/vertex
- git clone https://github.com/CommonDoc/scriba.git ~/lisp/scriba
- git clone https://github.com/CommonDoc/parenml.git ~/lisp/parenml
- git clone https://github.com/CommonDoc/pandocl.git ~/lisp/pandocl
- 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:
- 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))'
notifications:
email: