summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: a115095b2ffd4608daf004370a58ede9788b15b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: C
matrix:
  fast_finish: true
  include:
    - os: linux
      addons:
        apt:
          packages:
          - cmake
    - os: osx
      osx_image: xcode9.4
      compiler: clang
      addons:
        homebrew:
          packages:
          - cmake
          - zlib
script:
- mkdir build
- cd build
- cmake -DDEBIAN=1 -DMULTI_SEMANTICS=1 ..
- make
- make test