diff options
author | Sitsofe Wheeler <sitsofe@yahoo.com> | 2020-07-26 02:43:16 +0100 |
---|---|---|
committer | Sitsofe Wheeler <sitsofe@yahoo.com> | 2020-07-26 11:55:10 +0100 |
commit | 8d2e9d66c6307d951eaf172415be2de4bbac6cfd (patch) | |
tree | 1e2ea8a2d60fc1bfa47d19a0d8f91427b64d7616 | |
parent | e235e74dfd0627b17690194f957da509b8ace808 (diff) | |
download | fio-8d2e9d66c6307d951eaf172415be2de4bbac6cfd.tar.gz fio-8d2e9d66c6307d951eaf172415be2de4bbac6cfd.tar.bz2 |
travis: simplify yml file
Signed-off-by: Sitsofe Wheeler <sitsofe@yahoo.com>
-rw-r--r-- | .travis.yml | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/.travis.yml b/.travis.yml index b64f0a95..18267c04 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,34 +9,26 @@ arch: - amd64 - arm64 env: - matrix: - - BUILD_ARCH="x86" - - BUILD_ARCH="x86_64" global: - MAKEFLAGS="-j 2" matrix: include: + - os: linux + compiler: gcc + arch: amd64 + env: BUILD_ARCH="x86" # Only do the gcc x86 build to reduce clutter # Default xcode image - 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 - - 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: - ci/travis-install.sh |