ci: clarify a debug message

Where MESON_OPTIONS is empty, the single line "Building with" is not
particularly self-explanatory.
This commit is contained in:
Peter Hutterer 2021-10-18 08:28:04 +10:00
parent 6843d1bffb
commit bff243d7f3

View file

@ -121,7 +121,7 @@ include:
- export BUILD_DIR="$PWD/build-$BUILD_ID" - export BUILD_DIR="$PWD/build-$BUILD_ID"
- export XDG_RUNTIME_DIR="$(mktemp -p $PWD -d xdg-runtime-XXXXXX)" - export XDG_RUNTIME_DIR="$(mktemp -p $PWD -d xdg-runtime-XXXXXX)"
script: script:
- echo "Building with $MESON_OPTIONS" - echo "Building with meson options $MESON_OPTIONS"
- meson "$BUILD_DIR" . --prefix="$PREFIX" $MESON_OPTIONS - meson "$BUILD_DIR" . --prefix="$PREFIX" $MESON_OPTIONS
- ninja -C "$BUILD_DIR" - ninja -C "$BUILD_DIR"
- ninja -C "$BUILD_DIR" test - ninja -C "$BUILD_DIR" test
@ -238,7 +238,7 @@ valgrind:
extends: extends:
- .build_on_fedora - .build_on_fedora
script: script:
- echo "Building with $MESON_OPTIONS" - echo "Building with meson options $MESON_OPTIONS"
- meson "$BUILD_DIR" . --prefix="$PREFIX" $MESON_OPTIONS - meson "$BUILD_DIR" . --prefix="$PREFIX" $MESON_OPTIONS
- meson test -C "$BUILD_DIR" --setup=valgrind - meson test -C "$BUILD_DIR" --setup=valgrind