Skip to content

Commit

Permalink
Add initial .travis.yml (without artifact upload)
Browse files Browse the repository at this point in the history
* Does not archive or upload any artifacts

fixes #4
  • Loading branch information
scymtym committed Oct 23, 2018
1 parent f4933ff commit 201c7a3
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
language: lisp
dist: xenial
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:
- (
cd "${HOME}/quicklisp/local-projects"
&& git clone https://github.com/scymtym/cl-protobuf
&& git clone https://github.com/scymtym/serialization.protocol-buffer
&& git clone https://github.com/scymtym/network.spread
&& git clone https://github.com/open-rsx/rsb-cl
)
- ./cl
-S '(:source-registry (:directory "'$(pwd)'") :ignore-inherited-configuration)'
-Q
-s cl-protobuf
-s rsb-formatting-json
-s rsb-formatting-png
-s rsb-formatting/test
-s rsb-tools-common/test
-s rsb-stats/test
-s rsb-tools-commands/test
-s rsb-tools-commands-web/test
'(or (mapc (function asdf:test-system)
(list :rsb-formatting/test
:rsb-tools-common/test
:rsb-stats/test
:rsb-tools-commands/test
:rsb-tools-commands-web/test))
(uiop:quit -1))'
- ./cl
-S '(:source-registry (:directory "$'(pwd)'") :ignore-inherited-configuration)'
-s rsb-converter-protobuf
-s rsb-filter-regex
-s rsb-filter-xpath
-s rsb-transport-inprocess
-s rsb-transport-socket
-s rsb-transport-spread
-s rsb-formatting-json
-s rsb-formatting-png
-s rsb-tools-commands-web
-s rsb-tools-commands-web-resources
-s rsb-tools-main
--dump ! --output rsb-tools -r "rsb-tools:main"

0 comments on commit 201c7a3

Please sign in to comment.