Skip to content

Commit d92735e

Browse files
xhochywesm
authored andcommitted
ARROW-1834: [Doc] Build documentation in separate build folders
Author: Korn, Uwe <Uwe.Korn@blue-yonder.com> Closes apache#1332 from xhochy/ARROW-1834 and squashes the following commits: e9c0253 [Korn, Uwe] ARROW-1834: [Doc] Build documentation in separate build folders
1 parent 9f9dc5b commit d92735e

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

dev/gen_apidocs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN apt-add-repository -y ppa:ubuntu-toolchain-r/test && \
2626
git \
2727
gcc-4.9 \
2828
g++-4.9 \
29-
build-essential
29+
build-essential
3030
# This will install conda in /home/ubuntu/miniconda
3131
RUN wget -O /tmp/miniconda.sh \
3232
https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh && \

dev/gen_apidocs/create_documents.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ source activate pyarrow-dev
4545
export ARROW_BUILD_TOOLCHAIN=$CONDA_PREFIX
4646
export PARQUET_BUILD_TOOLCHAIN=$CONDA_PREFIX
4747

48-
rm -rf arrow/cpp/build
49-
mkdir arrow/cpp/build
50-
pushd arrow/cpp/build
48+
rm -rf arrow/cpp/build_docs
49+
mkdir arrow/cpp/build_docs
50+
pushd arrow/cpp/build_docs
5151
cmake -DCMAKE_BUILD_TYPE=$ARROW_BUILD_TYPE \
5252
-DCMAKE_INSTALL_PREFIX=$ARROW_HOME \
5353
-DARROW_PYTHON=on \
@@ -59,9 +59,9 @@ make install
5959
popd
6060

6161
# Build Parquet C++
62-
rm -rf parquet-cpp/build
63-
mkdir parquet-cpp/build
64-
pushd parquet-cpp/build
62+
rm -rf parquet-cpp/build_docs
63+
mkdir parquet-cpp/build_docs
64+
pushd parquet-cpp/build_docs
6565
cmake -DCMAKE_BUILD_TYPE=$ARROW_BUILD_TYPE \
6666
-DCMAKE_INSTALL_PREFIX=$PARQUET_HOME \
6767
-DPARQUET_BUILD_BENCHMARKS=off \

0 commit comments

Comments
 (0)