From 35c8481b99914f952d99db84d7fbdee4f2199f43 Mon Sep 17 00:00:00 2001 From: Christophe Bedard Date: Sat, 29 Feb 2020 20:09:56 -0500 Subject: [PATCH] Use console_cohesion when building and testing Signed-off-by: Christophe Bedard --- .gitlab-ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2a3a45b..b8d1df0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,29 +24,29 @@ tracing_enabled: script: - lttng --version && apt list lttng-tools liblttng-ust-dev python3-lttng python3-babeltrace - lttng-sessiond --daemonize - - colcon build --symlink-install --packages-up-to $PACKAGES_LIST + - colcon build --symlink-install --event-handlers console_cohesion+ --packages-up-to $PACKAGES_LIST - . install/local_setup.sh - ./build/tracetools/status - - colcon test --packages-select $PACKAGES_LIST + - colcon test --event-handlers console_cohesion+ --packages-select $PACKAGES_LIST - colcon test-result --all <<: *global_artifacts tracing_disabled: image: $BASE_IMAGE_ID:$DISTRO script: - - colcon build --symlink-install --cmake-args " -DTRACETOOLS_DISABLED=ON" --packages-up-to $PACKAGES_LIST + - colcon build --symlink-install --event-handlers console_cohesion+ --cmake-args " -DTRACETOOLS_DISABLED=ON" --packages-up-to $PACKAGES_LIST - . install/local_setup.sh - (! ./build/tracetools/status) - - colcon test --packages-select $PACKAGES_LIST + - colcon test --event-handlers console_cohesion+ --packages-select $PACKAGES_LIST - colcon test-result --all <<: *global_artifacts no_lttng: image: $BASE_IMAGE_ID:$DISTRO-base script: - - colcon build --symlink-install --packages-up-to $PACKAGES_LIST + - colcon build --symlink-install --event-handlers console_cohesion+ --packages-up-to $PACKAGES_LIST - . install/local_setup.sh - (! ./build/tracetools/status) - - colcon test --packages-select $PACKAGES_LIST + - colcon test --event-handlers console_cohesion+ --packages-select $PACKAGES_LIST - colcon test-result --all <<: *global_artifacts