X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=.travis.yml;h=eba16baa2d03871607d6b5a73d739867a2dee00a;hp=4a87fe6c45f80baff08e5ac5e037d51c0477578b;hb=08541925ec1b5887fc91e59a4bc253d54757c4c6;hpb=fee14ab846ef542d9bb9ebf68f11f0ecb8636f5e diff --git a/.travis.yml b/.travis.yml index 4a87fe6c..eba16baa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,13 @@ language: c +dist: bionic os: - linux compiler: - clang - gcc +arch: + - amd64 + - arm64 env: matrix: - BUILD_ARCH="x86" @@ -12,44 +16,52 @@ env: - MAKEFLAGS="-j 2" matrix: include: + # Default xcode image - 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) + arch: amd64 + # Latest xcode image (needs periodic updating) - os: osx compiler: clang - osx_image: xcode8.3 - env: BUILD_ARCH="x86_64" - - os: osx - compiler: clang - osx_image: xcode9.4 + osx_image: xcode11.2 env: BUILD_ARCH="x86_64" + arch: amd64 exclude: - os: osx compiler: gcc - exclude: - os: linux compiler: clang + arch: amd64 env: BUILD_ARCH="x86" # Only do the gcc x86 build to reduce clutter + - os: linux + env: BUILD_ARCH="x86" + arch: arm64 + before_install: - EXTRA_CFLAGS="-Werror" - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then - pkgs=(libaio-dev libnuma-dev libz-dev librbd-dev libibverbs-dev librdmacm-dev); + pkgs=(libaio-dev libcunit1 libcunit1-dev libgoogle-perftools4 libibverbs-dev libiscsi-dev libnuma-dev librbd-dev librdmacm-dev libz-dev); if [[ "$BUILD_ARCH" == "x86" ]]; then pkgs=("${pkgs[@]/%/:i386}"); - pkgs+=(gcc-multilib); + pkgs+=(gcc-multilib python3-scipy); EXTRA_CFLAGS="${EXTRA_CFLAGS} -m32"; else - pkgs+=(glusterfs-common); + pkgs+=(glusterfs-common python3-scipy); fi; sudo apt-get -qq update; sudo apt-get install --no-install-recommends -qq -y "${pkgs[@]}"; - fi + fi; + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then + brew update; + brew install cunit; + pip3 install scipy; + fi; script: - ./configure --extra-cflags="${EXTRA_CFLAGS}" && make - make test + - if [[ "$TRAVIS_CPU_ARCH" == "arm64" ]]; then + sudo python3 t/run-fio-tests.py --skip 6 1007 1008 --debug -p 1010:"--skip 15 16 17 18 19 20"; + else + sudo python3 t/run-fio-tests.py --skip 6 1007 1008 --debug; + fi;