Skip to content
Snippets Groups Projects
Unverified Commit 72221ba1 authored by Carl Delsey's avatar Carl Delsey Committed by GitHub
Browse files

Cause build output to be sent to screen to prevent travis timeouts. (#1287)

parent 88d94d18
No related branches found
No related tags found
No related merge requests found
......@@ -34,8 +34,8 @@ RUN find ./ -name "package.xml" | \
# multi-stage for building
FROM $FROM_IMAGE AS build
# install CI dependencies
RUN apt-get update && apt-get install -q -y \
# install CI dependencies
RUN apt-get update && apt-get install -q -y \
ccache \
lcov \
&& rm -rf /var/lib/apt/lists/*
......@@ -63,6 +63,7 @@ RUN . /opt/ros/$ROS_DISTRO/setup.sh && \
--symlink-install \
--mixin \
$UNDERLAY_MIXINS \
--event-handlers console_direct+ \
|| touch build_failed && \
if [ -f build_failed ] && [ -n "$FAIL_ON_BUILD_FAILURE" ]; then \
exit 1; \
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment