summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 7e4e1f4698397b7b9b6a67d2dfd9e72c3769ba72 (plain)
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
language: common-lisp
sudo: required

env:
  matrix:
    - LISP=sbcl
    - LISP=ccl
    - LISP=clisp
    # - LISP=ecl

install:
  - sudo apt-get install texinfo
  - if [ -x ./install.sh ] && head -2 ./install.sh | grep '^#cl-travis' > /dev/null;
    then
      ./install.sh;
    else
      curl https://raw.githubusercontent.com/luismbo/cl-travis/master/install.sh | bash;
    fi
  - echo "(load \"/home/travis/asdf\")" > "$HOME/.clisprc.lisp"
  - cl -l clx -l cl-ppcre -e '(ql-util:without-prompting (ql:add-to-init-file))'

before_script:
  - ./autogen.sh
  - ./configure

script:
  - make