2015-01-02 17:13:51 +01:00
|
|
|
language: c
|
|
|
|
|
compiler:
|
|
|
|
|
- gcc
|
|
|
|
|
- clang
|
2015-02-25 05:26:24 +01:00
|
|
|
before_install:
|
|
|
|
|
# Travis VMs are 64-bit but we compile both for 32 and 64 bit. To enable the
|
|
|
|
|
# 32-bit builds to work, we need gcc-multilib.
|
|
|
|
|
- sudo apt-get update -qq
|
|
|
|
|
- sudo apt-get install -qq gcc-multilib
|
|
|
|
|
|
2015-02-25 04:32:46 +01:00
|
|
|
script: make all && make test
|