From 6251d2ef59ab2dbcad070a7536183606196b94b1 Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Wed, 7 Oct 2020 08:40:33 +0900 Subject: [PATCH] [C++][CI] Disable S3 in arm64 job on Travis CI Because it often causes "No output has been received in the last 10m0s, this potentially indicates a stalled build or something wrong with the build itself." on Travis CI. --- .travis.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.travis.yml b/.travis.yml index 5ba51da4e39..d22787d1547 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,10 +42,16 @@ jobs: DOCKER_IMAGE_ID: ubuntu-cpp # ARROW_USE_GLOG=OFF is needed to avoid build error caused by # glog and CMAKE_UNITY_BUILD=ON. + # + # Disable ARROW_S3 because it often causes "No output has + # been received in the last 10m0s, this potentially indicates + # a stalled build or something wrong with the build itself." + # on Travis CI. DOCKER_RUN_ARGS: >- " -e ARROW_BUILD_STATIC=OFF -e ARROW_ORC=OFF + -e ARROW_S3=OFF -e ARROW_USE_GLOG=OFF -e CMAKE_UNITY_BUILD=ON "