From 3b6be5ed884ef7ba3b38af82a9ddabb39068e26c Mon Sep 17 00:00:00 2001 From: Justin Carpentier Date: Tue, 7 Jan 2025 16:32:27 +0100 Subject: [PATCH] ci/ros: fix IMMEDIATE_TEST_OUTPUT: true --- .github/workflows/ros-ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ros-ci.yml b/.github/workflows/ros-ci.yml index 3c5819398..1b64b71cf 100644 --- a/.github/workflows/ros-ci.yml +++ b/.github/workflows/ros-ci.yml @@ -38,10 +38,10 @@ jobs: strategy: matrix: env: - - {ROS_DISTRO: noetic, BUILDER: catkin_tools} - - {ROS_DISTRO: rolling} - - {ROS_DISTRO: iron} - - {ROS_DISTRO: humble} + - {ROS_DISTRO: noetic, BUILDER: catkin_tools, IMMEDIATE_TEST_OUTPUT: true} + - {ROS_DISTRO: rolling, IMMEDIATE_TEST_OUTPUT: true} + - {ROS_DISTRO: iron, IMMEDIATE_TEST_OUTPUT: true} + - {ROS_DISTRO: humble, IMMEDIATE_TEST_OUTPUT: true} env: CCACHE_DIR: /github/home/.ccache # Enable ccache # The following is a work-around for ROS1 tooling in conjunction with jrl-cmakemodules: @@ -53,7 +53,6 @@ jobs: # target after completion of the regular test target. The output of this step does affect the output of the CI process. # Note, this does not affect projects that do not have pure CMake projects in their upstream_ws. AFTER_RUN_TARGET_TEST: ici_with_unset_variables source /root/target_ws/install/setup.bash && cd /root/target_ws/build/pinocchio && make test - IMMEDIATE_TEST_OUTPUT: 1 runs-on: ubuntu-latest steps: - uses: actions/checkout@v4