summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 364f442f4d871d186b7bb1258f01154071606646 (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

os:
  - linux
  - osx

compiler:
  - clang

sudo: false

#sudo: required
#before_script:
#  - sudo apt-get update
#  - sudo apt-get install libc6:i386

install:
  - ./autogen.sh
  - ./configure --enable-assertions --enable-werror

script:
  - make -j check CFLAGS_EXTRA="-m32 -O3 -march=native"
  - make clean && make -j check CFLAGS_EXTRA="-m32"