Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Try to silence deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrou committed Aug 16, 2018
1 parent a6a2198 commit 6760214
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions ci/travis_script_static.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ export LZ4_STATIC_LIB=$ARROW_EP/lz4_ep-prefix/src/lz4_ep/lib/liblz4.a
export ZSTD_STATIC_LIB=$ARROW_EP/zstd_ep-prefix/src/zstd_ep/lib/libzstd.a

cmake -DPARQUET_CXXFLAGS="$PARQUET_CXXFLAGS" \
-DPARQUET_BUILD_WARNING_LEVEL=CHECKIN \
-DPARQUET_TEST_MEMCHECK=ON \
-DPARQUET_ARROW_LINKAGE="static" \
-DPARQUET_BUILD_SHARED=OFF \
Expand All @@ -78,7 +79,7 @@ cmake -DPARQUET_CXXFLAGS="$PARQUET_CXXFLAGS" \

pushd $CPP_BUILD_DIR

make -j4 VERBOSE=1 || exit 1
ctest -VV -L unittest || { cat $TRAVIS_BUILD_DIR/parquet-build/Testing/Temporary/LastTest.log; exit 1; }
make -j4 VERBOSE=1
ctest -j2 --output-on-failure -L unittest

popd
7 changes: 4 additions & 3 deletions ci/travis_script_toolchain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,17 @@ export LD_LIBRARY_PATH=$CPP_TOOLCHAIN/lib:$LD_LIBRARY_PATH
export BOOST_ROOT=$CPP_TOOLCHAIN

cmake -DPARQUET_CXXFLAGS=-Werror \
-DPARQUET_BUILD_WARNING_LEVEL=CHECKIN \
-DPARQUET_TEST_MEMCHECK=ON \
-DPARQUET_GENERATE_COVERAGE=1 \
-DCMAKE_INSTALL_PREFIX=$CPP_TOOLCHAIN \
$TRAVIS_BUILD_DIR

pushd $CPP_BUILD_DIR

make -j4 || exit 1
make install || exit 1
ctest -VV -L unittest || { cat $TRAVIS_BUILD_DIR/parquet-build/Testing/Temporary/LastTest.log; exit 1; }
make -j4
make install
ctest -j2 --output-on-failure -L unittest

popd

Expand Down

0 comments on commit 6760214

Please sign in to comment.