-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (29 loc) · 1.29 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
language: lisp
env: PREFIX="$(pwd)/sbcl"
SBCL_HOME="$(pwd)/sbcl/lib/sbcl"
SBCL="$(pwd)/sbcl/bin/sbcl"
SBCL_OPTIONS="--noinform --no-userinit"
install:
- curl -L "${SBCL_DOWNLOAD_URL}" | tar -xj
- ( cd sbcl-* && INSTALL_ROOT="${PREFIX}" sh install.sh )
- curl -o cl "${CL_LAUNCH_DOWNLOAD_URL}"
- chmod +x cl
- curl -o quicklisp.lisp "${QUICKLISP_DOWNLOAD_URL}"
- ./cl -L quicklisp.lisp '(quicklisp-quickstart:install)'
script:
- ./cl
-S '(:source-registry (:directory "'$(pwd)'") :ignore-inherited-configuration)'
-Q
-s configuration.options/test
-s configuration.options-syntax-ini/test
-s configuration.options-syntax-xml/test
-s configuration.options-and-mop/test
-s configuration.options-and-service-provider/test
'(or (every (function identity)
(mapcar (function funcall)
(quote (configuration.options.test:run-tests
configuration.options.sources.syntax-ini.test:run-tests
configuration.options.sources.syntax-xml.test:run-tests
configuration.options.mop.test:run-tests
configuration.options.service-provider.test:run-tests))))
(uiop:quit -1))'