You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ks...@apache.org on 2019/03/21 12:36:26 UTC

[arrow] branch master updated: ARROW-4951: [C++] Turn off cpp benchmarks in cpp docker images

This is an automated email from the ASF dual-hosted git repository.

kszucs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 50e9f64  ARROW-4951: [C++] Turn off cpp benchmarks in cpp docker images
50e9f64 is described below

commit 50e9f640d8fdf4e855909fe022f4b5152389bfc9
Author: Krisztián Szűcs <sz...@gmail.com>
AuthorDate: Thu Mar 21 13:36:14 2019 +0100

    ARROW-4951: [C++] Turn off cpp benchmarks in cpp docker images
    
    Author: Krisztián Szűcs <sz...@gmail.com>
    
    Closes #3987 from kszucs/ARROW-4951 and squashes the following commits:
    
    ac9c6b5f <Krisztián Szűcs> build the benchmarks but only run the unittests
    ed1fa0c6 <Krisztián Szűcs> turn off benchmarks by default in docker containers
---
 ci/docker_build_and_test_cpp.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ci/docker_build_and_test_cpp.sh b/ci/docker_build_and_test_cpp.sh
index ff33221..c059a5e 100755
--- a/ci/docker_build_and_test_cpp.sh
+++ b/ci/docker_build_and_test_cpp.sh
@@ -20,5 +20,5 @@ set -e
 
 /arrow/ci/docker_build_cpp.sh
 pushd /build/cpp
-ninja test
+ninja unittest
 popd