[
https://issues.apache.org/jira/browse/ARROW-1834?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16258699#comment-16258699
]
ASF GitHub Bot commented on ARROW-1834:
---------------------------------------
wesm closed pull request #1332: ARROW-1834: [Doc] Build documentation in
separate build folders
URL: https://github.com/apache/arrow/pull/1332
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/dev/gen_apidocs/Dockerfile b/dev/gen_apidocs/Dockerfile
index eaeb54818..ca4718e63 100644
--- a/dev/gen_apidocs/Dockerfile
+++ b/dev/gen_apidocs/Dockerfile
@@ -26,7 +26,7 @@ RUN apt-add-repository -y ppa:ubuntu-toolchain-r/test && \
git \
gcc-4.9 \
g++-4.9 \
- build-essential
+ build-essential
# This will install conda in /home/ubuntu/miniconda
RUN wget -O /tmp/miniconda.sh \
https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh && \
diff --git a/dev/gen_apidocs/create_documents.sh
b/dev/gen_apidocs/create_documents.sh
index 762b85222..566d9cee7 100755
--- a/dev/gen_apidocs/create_documents.sh
+++ b/dev/gen_apidocs/create_documents.sh
@@ -45,9 +45,9 @@ source activate pyarrow-dev
export ARROW_BUILD_TOOLCHAIN=$CONDA_PREFIX
export PARQUET_BUILD_TOOLCHAIN=$CONDA_PREFIX
-rm -rf arrow/cpp/build
-mkdir arrow/cpp/build
-pushd arrow/cpp/build
+rm -rf arrow/cpp/build_docs
+mkdir arrow/cpp/build_docs
+pushd arrow/cpp/build_docs
cmake -DCMAKE_BUILD_TYPE=$ARROW_BUILD_TYPE \
-DCMAKE_INSTALL_PREFIX=$ARROW_HOME \
-DARROW_PYTHON=on \
@@ -59,9 +59,9 @@ make install
popd
# Build Parquet C++
-rm -rf parquet-cpp/build
-mkdir parquet-cpp/build
-pushd parquet-cpp/build
+rm -rf parquet-cpp/build_docs
+mkdir parquet-cpp/build_docs
+pushd parquet-cpp/build_docs
cmake -DCMAKE_BUILD_TYPE=$ARROW_BUILD_TYPE \
-DCMAKE_INSTALL_PREFIX=$PARQUET_HOME \
-DPARQUET_BUILD_BENCHMARKS=off \
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
> [Doc] Build documentation in separate build folders
> ---------------------------------------------------
>
> Key: ARROW-1834
> URL: https://issues.apache.org/jira/browse/ARROW-1834
> Project: Apache Arrow
> Issue Type: Improvement
> Components: Documentation
> Reporter: Uwe L. Korn
> Assignee: Uwe L. Korn
> Labels: pull-request-available
> Fix For: 0.8.0
>
>
> Use non-default folders for building Arrow and Parquet C++ for the
> documentation in the docker image. Currently they infer with the default
> build folder a typical developer would chose and thus interfere with local
> development.
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)