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.
  • Loading branch information
pitrou committed Mar 7, 2022
1 parent 11d2e48 commit 4ed2de2
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 4ed2de2

Please sign in to comment.