Skip to content

Commit

Permalink
ARROW-15863: [Packaging][C++][Python] Fix conda package builds
Browse files Browse the repository at this point in the history
Enable Parquet encryption on all conda package builds.

Closes #12577 from pitrou/ARROW-15863-conda

Authored-by: Antoine Pitrou <antoine@python.org>
Signed-off-by: Antoine Pitrou <antoine@python.org>
  • Loading branch information
pitrou committed Mar 8, 2022
1 parent 63e1acc commit 72157a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dev/tasks/conda-recipes/arrow-cpp/bld-arrow.bat
Expand Up @@ -32,7 +32,7 @@ cmake -G "Ninja" ^
-DARROW_BUILD_UTILITIES:BOOL=OFF ^
-DARROW_BUILD_STATIC:BOOL=OFF ^
-DCMAKE_BUILD_TYPE=release ^
-DARROW_SSE42:BOOL=OFF ^
-DARROW_SIMD_LEVEL=NONE ^
-DARROW_PYTHON:BOOL=ON ^
-DARROW_MIMALLOC:BOOL=ON ^
-DARROW_DATASET:BOOL=ON ^
Expand All @@ -41,6 +41,7 @@ cmake -G "Ninja" ^
-DARROW_HDFS:BOOL=ON ^
-DARROW_GCS:BOOL=ON ^
-DARROW_PARQUET:BOOL=ON ^
-DPARQUET_REQUIRE_ENCRYPTION:BOOL=ON ^
-DARROW_GANDIVA:BOOL=ON ^
-DARROW_ORC:BOOL=ON ^
-DARROW_S3:BOOL=ON ^
Expand Down
1 change: 1 addition & 0 deletions dev/tasks/conda-recipes/arrow-cpp/build-arrow.sh
Expand Up @@ -71,6 +71,7 @@ cmake \
-DARROW_ORC=ON \
-DARROW_PACKAGE_PREFIX=$PREFIX \
-DARROW_PARQUET=ON \
-DPARQUET_REQUIRE_ENCRYPTION=ON \
-DARROW_PLASMA=ON \
-DARROW_PYTHON=ON \
-DARROW_S3=ON \
Expand Down

0 comments on commit 72157a8

Please sign in to comment.