Skip to content

Commit c59db80

Browse files
committed
Try the way I build locally
1 parent 473afca commit c59db80

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,10 @@ Then,
4545
LIB_TYPE=shared
4646
#LIB_TYPE=static
4747
meson --buildtype ${BUILD_TYPE} --default-library ${LIB_TYPE} . build-${LIB_TYPE}
48-
ninja -v -C build-${LIB_TYPE} test
48+
#ninja -v -C build-${LIB_TYPE} test # This stopped working on my Mac.
49+
ninja -v -C build-${LIB_TYPE}
4950
cd build-${LIB_TYPE}
51+
meson test --no-rebuild --print-errorlogs
5052
sudo ninja install
5153

5254
### Building and testing with other build systems

travis.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,8 @@ meson --version
2121
ninja --version
2222
meson --buildtype ${BUILD_TYPE} --default-library ${LIB_TYPE} . build-${LIB_TYPE}
2323
ninja -v -C build-${LIB_TYPE}
24-
ninja -v -C build-${LIB_TYPE} test
24+
#ninja -v -C build-${LIB_TYPE} test
25+
cd build-${LIB_TYPE}
26+
meson test --no-rebuild --print-errorlogs
27+
cd -
2528
rm -r build-${LIB_TYPE}

0 commit comments

Comments
 (0)