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 28cd8f2 commit 4358128Copy full SHA for 4358128
github-actions.sh
@@ -16,6 +16,7 @@ export RESET="\e[0m"
16
# Paths
17
export WS="/root/ros2_ws"
18
export ROS2_DISTRO="rolling"
19
+export SKIP_PACKAGES="pendulum_demo"
20
21
function prepare_ws()
22
{
@@ -38,7 +39,8 @@ function run_rosdep()
38
39
apt update -qq && rosdep update
40
rosdep install -q -y --from-paths . --ignore-src --rosdistro \
41
"${ROS2_DISTRO}" \
- --as-root=apt:false || true
42
+ --skip-keys "${SKIP_PACKAGES}" \
43
+ --as-root=apt:false
44
result=$?
45
if [ $result -ne 0 ]; then
46
echo -e "${RED}run_rosdep failled${RESET}"
0 commit comments