X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=.travis.yml;h=4a87fe6c45f80baff08e5ac5e037d51c0477578b;hp=ca50e22644c7e6d323bde2a1996ef66686b3cc16;hb=b7aae4ba630b1dd6853f0794f00080f61b7cdc93;hpb=fa3c391d19a7775f8c0b9955a4d86f6afe439526 diff --git a/.travis.yml b/.travis.yml index ca50e226..4a87fe6c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,24 +5,51 @@ compiler: - clang - gcc env: + matrix: + - BUILD_ARCH="x86" + - BUILD_ARCH="x86_64" global: - MAKEFLAGS="-j 2" matrix: include: - os: osx compiler: clang # Workaround travis setting CC=["clang", "gcc"] + env: BUILD_ARCH="x86_64" # Build using the 10.12 SDK but target and run on OSX 10.11 # - os: osx # compiler: clang # osx_image: xcode8 # env: SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk MACOSX_DEPLOYMENT_TARGET=10.11 - # Build on the latest OSX version (will eventually become obsolete) + # Build on the latest OSX version (will eventually become obsolete) - os: osx compiler: clang - osx_image: xcode8.2 + osx_image: xcode8.3 + env: BUILD_ARCH="x86_64" + - os: osx + compiler: clang + osx_image: xcode9.4 + env: BUILD_ARCH="x86_64" exclude: - os: osx compiler: gcc + exclude: + - os: linux + compiler: clang + env: BUILD_ARCH="x86" # Only do the gcc x86 build to reduce clutter before_install: - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -qq -y libaio-dev libnuma-dev libz-dev; fi + - EXTRA_CFLAGS="-Werror" + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then + pkgs=(libaio-dev libnuma-dev libz-dev librbd-dev libibverbs-dev librdmacm-dev); + if [[ "$BUILD_ARCH" == "x86" ]]; then + pkgs=("${pkgs[@]/%/:i386}"); + pkgs+=(gcc-multilib); + EXTRA_CFLAGS="${EXTRA_CFLAGS} -m32"; + else + pkgs+=(glusterfs-common); + fi; + sudo apt-get -qq update; + sudo apt-get install --no-install-recommends -qq -y "${pkgs[@]}"; + fi +script: + - ./configure --extra-cflags="${EXTRA_CFLAGS}" && make + - make test