forked from space-ros/docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create shell scripts to update nav2 repos on release (space-ros#142).
Now nav2 package versions can be updated with `./docker_update_nav2_repos.sh` script.
- Loading branch information
Showing
4 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
SPACE_ROS_IMAGE="${SPACE_ROS_IMAGE:-osrf/space-ros:latest}" | ||
|
||
docker run --rm \ | ||
-v ./:/home/spaceros-user/mount/ \ | ||
-w /home/spaceros-user/mount/ \ | ||
$SPACE_ROS_IMAGE \ | ||
bash -c './update_nav2_repos.sh' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nav2_rviz_plugins |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
navigation2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
source $SPACEROS_DIR/install/setup.bash | ||
SCRIPT_PATH="$SPACEROS_DIR/scripts" | ||
bash $SCRIPT_PATH/generate-repos.sh \ | ||
--rosdistro $ROS_DISTRO \ | ||
--packages navigation2-pkgs.txt \ | ||
--excluded-packages excluded-pkgs.txt \ | ||
--outfile navigation2.repos \ | ||
--upstream false # this allows us to select specific sub-packages from a single repo |