From 4294479b92cbe224b3f58f59b27f72518f9f7715 Mon Sep 17 00:00:00 2001 From: Stefan Hoffmann Date: Wed, 24 Jul 2024 08:15:47 +0200 Subject: [PATCH] tmp: upload windows build logs to artifacts --- .github/workflows/build_desktop.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_desktop.yml b/.github/workflows/build_desktop.yml index a5792f38..80b73731 100644 --- a/.github/workflows/build_desktop.yml +++ b/.github/workflows/build_desktop.yml @@ -19,8 +19,14 @@ jobs: with: required-ros-distributions: foxy - uses: ros-tooling/action-ros-ci@v0.3 + id: action_ros_ci_step with: package-name: rcldotnet_examples target-ros2-distro: foxy vcs-repo-file-url: ${{github.workspace}}/.github/workflows/ci.repos - extra-cmake-args: -DCMAKE_SYSTEM_VERSION=10.0.19041.0 -Wno-dev \ No newline at end of file + extra-cmake-args: -DCMAKE_SYSTEM_VERSION=10.0.19041.0 -Wno-dev + - uses: actions/upload-artifact@v4 + with: + name: colcon-logs + path: ${{ steps.action_ros_ci_step.outputs.ros-workspace-directory-name }}/log + if: always() # upload the logs even when the build fails