Skip to content

Commit

Permalink
Fix cpp_build script to install jsoncons
Browse files Browse the repository at this point in the history
  • Loading branch information
augustoasilva committed Jul 8, 2021
1 parent cf17333 commit d5df84b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions ci/scripts/cpp_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@ fi
mkdir -p ${build_dir}
pushd ${build_dir}

# installing jsoncons
git clone https://github.com/danielaparker/jsoncons.git && \
cd jsoncons && \
mkdir build && \
cd build && \
cmake .. && \
make && \
make install

cmake -G "${CMAKE_GENERATOR:-Ninja}" \
-DARROW_BOOST_USE_SHARED=${ARROW_BOOST_USE_SHARED:-ON} \
-DARROW_BUILD_BENCHMARKS=${ARROW_BUILD_BENCHMARKS:-OFF} \
Expand Down

0 comments on commit d5df84b

Please sign in to comment.