You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by uw...@apache.org on 2019/01/03 15:35:25 UTC

[arrow] branch master updated: ARROW-4148: [CI/Python] Disable ORC on nightly Alpine builds

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

uwe 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 6ca8fcd  ARROW-4148: [CI/Python] Disable ORC on nightly Alpine builds
6ca8fcd is described below

commit 6ca8fcdeccc54a80ce90711441a41ec6ffbd216b
Author: Krisztián Szűcs <sz...@gmail.com>
AuthorDate: Thu Jan 3 16:35:11 2019 +0100

    ARROW-4148: [CI/Python] Disable ORC on nightly Alpine builds
    
    Nightly Python Alpine builds were [failing](https://travis-ci.org/kszucs/crossbow/builds/474545492) because PYARROW_WITH_ORC is enabled by default, but the underlying cpp image doesn't build against ORC.
    
    Crossbow builds:
    - ~[kszucs/crossbow/build-391](https://github.com/kszucs/crossbow/branches/all?utf8=%E2%9C%93&query=391)~
    - [kszucs/crossbow/build-393](https://github.com/kszucs/crossbow/branches/all?utf8=%E2%9C%93&query=393) [GREEN]
    
    Author: Krisztián Szűcs <sz...@gmail.com>
    
    Closes #3297 from kszucs/ARROW-4148 and squashes the following commits:
    
    16e162e1 <Krisztián Szűcs> install dependencies from requirements.txt as well
    6cd864f9 <Krisztián Szűcs> disable PYARROW_WITH_ORC
---
 python/Dockerfile.alpine | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/python/Dockerfile.alpine b/python/Dockerfile.alpine
index ba0f2eb..9636219 100644
--- a/python/Dockerfile.alpine
+++ b/python/Dockerfile.alpine
@@ -30,9 +30,13 @@ RUN export PYTHON_MAJOR=${PYTHON_VERSION:0:1} && \
 ADD python/requirements.txt \
     python/requirements-test.txt \
     /arrow/python/
-RUN pip install -r /arrow/python/requirements-test.txt cython
+RUN pip install \
+    -r /arrow/python/requirements.txt \
+    -r /arrow/python/requirements-test.txt \
+    cython
 
 ENV ARROW_PYTHON=ON \
+    PYARROW_WITH_ORC=0 \
     PYARROW_WITH_PARQUET=0
 
 # build and test