1language: cpp 2os: 3 - linux 4compiler: 5 - clang 6 - gcc 7env: 8 matrix: 9 - BUILD_ARCH="x86" 10 - BUILD_ARCH="x86_64" 11 global: 12 - MAKEFLAGS="-j 2" 13matrix: 14 exclude: 15 - os: linux 16 compiler: clang 17 env: BUILD_ARCH="x86" # Only do the gcc x86 build to reduce clutter 18before_install: 19 - EXTRA_CFLAGS="-Werror" 20script: 21 - ./configure && make 22 - sudo make runtests || true 23