We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 886aad2 commit 1112914Copy full SHA for 1112914
2 files changed
.github/workflows/copilot-setup-steps.yml
@@ -56,7 +56,5 @@ jobs:
56
run: |
57
cd ${GITHUB_WORKSPACE}
58
source /opt/ros/humble/setup.bash
59
- # Build message/interface packages first so downstream C++ packages
60
- # (sentor_guard) can find them via CMAKE_PREFIX_PATH when they build.
61
- colcon build --symlink-install --continue-on-error
+ colcon build --symlink-install --continue-on-error || true
62
source install/setup.bash
.github/workflows/ros-ci.yml
@@ -75,4 +75,10 @@ jobs:
75
with:
76
import-token: ${{ github.token }}
77
target-ros2-distro: ${{ matrix.ros_distribution }}
78
- skip-tests: true
+ skip-tests: true
79
+ - name: check package is installed
80
+ if: ${{ matrix.ros_version == 2 }}
81
+ shell: bash
82
+ run: |
83
+ source install/setup.bash
84
+ ros2 pkg executables livox_ros_driver2
0 commit comments