Skip to content

Commit 30f2a3c

Browse files
author
Steven Noonan
committed
travis: enable verbose build messages
I need to see the command lines to figure out the difference between the Travis build and my own setup. Signed-off-by: Steven Noonan <[email protected]>
1 parent 185a717 commit 30f2a3c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis/build-cmake.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cmake_configure() {
1515
cmake_build() {
1616
BUILD_DIR="$1"
1717
shift
18-
cmake --build "$BUILD_DIR" -- "$@"
18+
cmake --build "$BUILD_DIR" -- -v "$@"
1919
}
2020

2121
cleanup() {

.travis/build-meson.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ set -x
2424
meson . build-meson ${MESON_ARGS[@]} --buildtype debugoptimized
2525

2626
# Build all targets of CMake/meson, ensuring everything can build.
27-
ninja -C build-meson
27+
ninja -v -C build-meson
2828

2929
# Run basic tests
3030
build-meson/tests/test_crypto

0 commit comments

Comments
 (0)