-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.travis.yml
41 lines (36 loc) · 1.16 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
language: common-lisp
sudo: false
env:
global:
- PATH=~/.roswell/bin:~/ipfs:$PATH
- ROSWELL_INSTALL_DIR=$HOME/.roswell
matrix:
- LISP=sbcl-bin COVERALLS=true
- LISP=ccl-bin
install:
# Install and run ipfs
- curl -L https://gobuilder.me/get/github.com/ipfs/go-ipfs/cmd/ipfs/ipfs_master_linux-amd64.zip -o ipfs_master_linux-amd64.zip
- unzip -j ipfs_master_linux-amd64.zip -d ~/ipfs
- ipfs init
- ipfs daemon &
# Install roswell
- curl -L https://raw.githubusercontent.com/snmsts/roswell/release/scripts/install-for-ci.sh | sh
# Install dependencies from HEAD, we need most recent
- git clone https://github.com/fukamachi/dexador ~/lisp/dexador
cache:
directories:
- $HOME/.roswell
- $HOME/.config/common-lisp
script:
- ros -s prove -s cl-coveralls
-e '(setf *debugger-hook*
(lambda (c h)
(declare (ignore c h))
(uiop:quit -1)))'
-e '(ql:quickload :cl-ipfs-api)'
-e '(or (coveralls:with-coveralls (:exclude (list "t"))
(prove:run :cl-ipfs-api-test))
(uiop:quit -1))'
notifications:
email: