From 8d7862069c16b71b97d8eaa1a6e2d002151e4206 Mon Sep 17 00:00:00 2001 From: Cyberium Date: Tue, 28 Jan 2020 22:06:15 +0100 Subject: [PATCH] Remove ARM build from travis It work well but take too much time so to avoid having build failling status because of build time exceed its preferable to disable it. Maybe in the future it will be enabled again. --- .travis.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.travis.yml b/.travis.yml index f938e0bd91..b21a61e23f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -76,21 +76,21 @@ matrix: - CC=clang - CXX=clang++ - # linux builds on gcc ARM64 - - os: linux - arch: arm64 - compiler: gcc - env: - - CC=gcc-7 - - CXX=g++-7 - install: - # Install newer cmake - - DEPS_DIR="${TRAVIS_BUILD_DIR}/deps" - - mkdir ${DEPS_DIR} && cd ${DEPS_DIR} - - travis_retry wget --no-check-certificate https://github.com/cyberium/prebuild/releases/download/v1.0/cmake-arm-3.16.2.tar.gz - - tar -xvf cmake-arm-3.16.2.tar.gz > /dev/null - - PATH=${DEPS_DIR}/cmake-install:${DEPS_DIR}/cmake-install/bin:$PATH - - cd ${TRAVIS_BUILD_DIR} +# # linux builds on gcc ARM64 +# - os: linux +# arch: arm64 +# compiler: gcc +# env: +# - CC=gcc-7 +# - CXX=g++-7 +# install: +# # Install newer cmake +# - DEPS_DIR="${TRAVIS_BUILD_DIR}/deps" +# - mkdir ${DEPS_DIR} && cd ${DEPS_DIR} +# - travis_retry wget --no-check-certificate https://github.com/cyberium/prebuild/releases/download/v1.0/cmake-arm-3.16.2.tar.gz +# - tar -xvf cmake-arm-3.16.2.tar.gz > /dev/null +# - PATH=${DEPS_DIR}/cmake-install:${DEPS_DIR}/cmake-install/bin:$PATH +# - cd ${TRAVIS_BUILD_DIR} # osx builds on clang x64 - os: osx