From: Vincent Fu Date: Tue, 26 May 2020 20:55:58 +0000 (-0400) Subject: .travis: enable arm64 architecture builds X-Git-Tag: fio-3.21~46^2 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=602d85d45c8101367861ef1d97c72d148f7edff1 .travis: enable arm64 architecture builds The travis-ci containers do not support the cmdprio_percentage option. So skip latency_percentile.py tests using that option. Signed-off-by: Vincent Fu --- diff --git a/.travis.yml b/.travis.yml index 77c31b77..9de0b2a2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,9 @@ os: compiler: - clang - gcc +arch: + - amd64 + - arm64 env: matrix: - BUILD_ARCH="x86" @@ -17,18 +20,24 @@ matrix: - os: osx compiler: clang # Workaround travis setting CC=["clang", "gcc"] env: BUILD_ARCH="x86_64" + arch: amd64 # Latest xcode image (needs periodic updating) - os: osx compiler: clang 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 @@ -54,4 +63,8 @@ before_install: script: - ./configure --extra-cflags="${EXTRA_CFLAGS}" && make - make test - - sudo python3 t/run-fio-tests.py --skip 6 1007 1008 --debug + - 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;