aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 1ff932a2a902b948f6ef55b71fbf0851e3c92bd7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: c
matrix:
  include:
    # Access more recent gcc and clang via a Trusty image
    - os: linux
      dist: trusty
      compiler: gcc
    - os: linux
      dist: trusty
      compiler: clang
    - os: osx
      compiler: gcc
    - os: osx
      compiler: clang
script:
  - make CFLAGS='-Werror'
  - make CFLAGS='-Wall -Wextra -Werror'