-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
language: lisp | ||
|
||
env: | ||
matrix: | ||
- LISP=ccl | ||
- LISP=sbcl | ||
# - LISP=abcl # Need to have cl-travis install JNA | ||
- LISP=cmucl | ||
- LISP=ecl | ||
|
||
matrix: | ||
allow_failures: | ||
- env: LISP=cmucl | ||
- env: LISP=ecl | ||
|
||
notifications: | ||
email: | ||
on_success: change | ||
on_failure: always | ||
irc: | ||
channels: | ||
- "chat.freenode.net#iolib" | ||
on_success: change | ||
on_failure: always | ||
use_notice: true | ||
skip_join: true | ||
|
||
install: | ||
- if [ "$LISP" = "allegro" ]; then sudo apt-get install libc6-dev-i386 libffi-dev:i386; fi | ||
- sudo ./install-repo.bash | ||
- curl -L https://github.com/luismbo/cl-travis/raw/master/install.sh | sh | ||
- cl -e "(cl:in-package :cl-user) | ||
(dolist (p '(:trivial-features :cffi :split-sequence :idna | ||
:bordeaux-threads :swap-bytes :fiveam)) | ||
(ql:quickload p :verbose t))" | ||
|
||
script: | ||
- cl -e "(cl:in-package :cl-user) | ||
(ql:quickload :iolib/tests :verbose t) | ||
(uiop:quit (if (some (lambda (x) (typep x '5am::test-failure)) | ||
(5am:run :iolib)) | ||
1 0))" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
|
||
cat >> /etc/apt/sources.list <<EOF | ||
deb http://download.opensuse.org/repositories/home:/sionescu/Ubuntu_Precise/ ./ | ||
EOF | ||
|
||
cat >> /etc/apt/preferences <<EOF | ||
Package: libfixposix* | ||
Pin: origin download.opensuse.org | ||
Pin-Priority: 1001 | ||
EOF | ||
|
||
apt-get update | ||
|
||
apt-get -y --force-yes install libfixposix2 libfixposix-dev |