diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2016-12-21 21:20:33 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2016-12-21 21:38:41 -0500 |
commit | 4cc0235673e0b305293b58ae90f1312f1d912a09 (patch) | |
tree | 6e9b3805ce62ee4fa2e5766d78f6be7445046cb9 | |
parent | afb63a82ae165b6630a35ab5945973358c8119b6 (diff) | |
download | bfs-4cc0235673e0b305293b58ae90f1312f1d912a09.tar.xz |
travis: Do 32-bit builds too
-rw-r--r-- | .travis.yml | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index a9f1e6b..e19e3d4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,7 @@ language: c +script: make check + matrix: include: - os: linux @@ -10,9 +12,18 @@ matrix: - os: linux dist: trusty sudo: false + compiler: gcc + env: + - CFLAGS="-m32 -g -Wall" + addons: + apt: + packages: + - gcc-multilib + + - os: linux + dist: trusty + sudo: false compiler: clang - os: osx compiler: clang - -script: make check |