From c59db800023ac306ad44cd7c8aa5bef474faf173 Mon Sep 17 00:00:00 2001 From: Christopher Dunn Date: Sat, 23 Jun 2018 16:34:57 -0500 Subject: [PATCH] Try the way I build locally --- README.md | 4 +++- travis.sh | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8332742..5c9c95f 100644 --- a/README.md +++ b/README.md @@ -45,8 +45,10 @@ Then, LIB_TYPE=shared #LIB_TYPE=static meson --buildtype ${BUILD_TYPE} --default-library ${LIB_TYPE} . build-${LIB_TYPE} - ninja -v -C build-${LIB_TYPE} test + #ninja -v -C build-${LIB_TYPE} test # This stopped working on my Mac. + ninja -v -C build-${LIB_TYPE} cd build-${LIB_TYPE} + meson test --no-rebuild --print-errorlogs sudo ninja install ### Building and testing with other build systems diff --git a/travis.sh b/travis.sh index f7a80bb..226c64d 100755 --- a/travis.sh +++ b/travis.sh @@ -21,5 +21,8 @@ meson --version ninja --version meson --buildtype ${BUILD_TYPE} --default-library ${LIB_TYPE} . build-${LIB_TYPE} ninja -v -C build-${LIB_TYPE} -ninja -v -C build-${LIB_TYPE} test +#ninja -v -C build-${LIB_TYPE} test +cd build-${LIB_TYPE} +meson test --no-rebuild --print-errorlogs +cd - rm -r build-${LIB_TYPE}