Test CMake installation on Travis.

PiperOrigin-RevId: 278300591
This commit is contained in:
Victor Costan 2019-11-03 21:38:38 -08:00 committed by Victor Costan
parent 95d0ba1cb0
commit cf4d9ab23d

View File

@ -70,6 +70,7 @@ install:
before_script:
- mkdir -p build && cd build
- cmake .. -G Ninja -DCMAKE_BUILD_TYPE=$BUILD_TYPE
-DCMAKE_INSTALL_PREFIX=$HOME/.local
- cmake --build .
- cd ..
@ -78,3 +79,4 @@ script:
- "if [ -f build/db_bench ] ; then build/db_bench ; fi"
- "if [ -f build/db_bench_sqlite3 ] ; then build/db_bench_sqlite3 ; fi"
- "if [ -f build/db_bench_tree_db ] ; then build/db_bench_tree_db ; fi"
- cd build && cmake --build . --target install