summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: e1fbd40bd6bcdc444bb74f2f4a3e791fd45f338e (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
28
29
30
31
32
language: c
matrix:
    include:
        - os: linux
          compiler: gcc

        - os: linux
          compiler: clang

        - os: osx
          compiler: gcc

        - os: osx
          compiler: clang

        - os: linux
          compiler: gcc
          env: CONFIGURE_OPTS=--enable-64-bit-words

        - os: linux
          compiler: clang
          env: CONFIGURE_OPTS=--enable-64-bit-words

        - os: osx
          compiler: gcc
          env: CONFIGURE_OPTS=--enable-64-bit-words

        - os: osx
          compiler: clang
          env: CONFIGURE_OPTS=--enable-64-bit-words
script:
  - ./autogen.sh && ./configure $CONFIGURE_OPTS && make && make check