From dd3cbe34bb19e5141c177b1bd83c79d1c0c46242 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Fr=C3=B6hlich?= Date: Sun, 25 Feb 2024 11:02:27 +0100 Subject: [PATCH] Don't fail on dnf check-update (#19) --- .github/workflows/reusable-rhel-binary-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable-rhel-binary-build.yml b/.github/workflows/reusable-rhel-binary-build.yml index 2c4003b..6220897 100644 --- a/.github/workflows/reusable-rhel-binary-build.yml +++ b/.github/workflows/reusable-rhel-binary-build.yml @@ -61,9 +61,9 @@ jobs: if [[ -n "${{ inputs.upstream_workspace }}" ]]; then vcs import src < ${{ env.path }}/${{ inputs.upstream_workspace }} fi - dnf check-update + dnf check-update || true # update the cache but don't fail if there are updates available rosdep update --rosdistro ${{ inputs.ros_distro }} - rosdep install -iyr --from-path src || true + rosdep install -iyr --from-path src || true # ignore errors, as some packages might not be available - id: package_list_action uses: ros-controls/ros2_control_ci/.github/actions/set-package-list@master with: