forked from jsk-ros-pkg/jsk_aerial_robot
-
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.
ubuntu22.04 support (jsk-ros-pkg#626)
* [GA] add github action for jammy using ROS-O * update * update * ubnutu:jammy * ubnutu-22.04 * [GA] setup ros workspace and catkin build * [GA] noetic->one * [GA] python3-wstool * [GA] sudo apt install python3-wstool * [spinal] cmake17 * add rosinstall for debian. modified from noetic one * update rosinstall path * fix typo * [motor test] C++17 * [GA] catkin build only aerial_robot and run catkin test * skip libgeographiclib-dev * [GA] ignore rosdep install error temporality * [ROS-O][rosinstall] use C++17 patched mocap_optitrack package (jsk-ros-pkg#13) * [ROS-O][rosinstall] update external repository path and version (jsk-ros-pkg#15) * use self released apt repository * update external repositry version * remove external repositry from rosinstall because they are released * remove error ignore flag when rosdep install * [mocap_optitrack] add mocap_optitrack package to rosinstall * [ROS-O][GA] build all packages * [CI] remove the script for EoL ros distribution * [CI][GA] merge ros one distribution test into .travis.sh * [ROS-O] crate configure script to install ros-o system for jammy * [ROS-O] update REAMDE to show the install instruction on Ubuntu22.04 * fix typo in README * [rosinstall] remove rosinstall for EoL distribution --------- Co-authored-by: Moju Zhao <[email protected]> Co-authored-by: Moju Zhao <[email protected]>
- Loading branch information
1 parent
ec16070
commit 04c9e56
Showing
8 changed files
with
124 additions
and
77 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
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
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
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,55 @@ | ||
# aerial robot third party | ||
- git: | ||
local-name: aerial_robot_3rdparty | ||
uri: https://github.com/JSKAerialRobot/aerial_robot_3rdparty.git | ||
version: 4085d3a | ||
|
||
# kalman filter | ||
- git: | ||
local-name: kalman_filter | ||
uri: https://github.com/JSKAerialRobot/kalman_filter.git | ||
version: 5c7a410 | ||
|
||
# the sensor interface | ||
- git: | ||
local-name: sensor_interface | ||
uri: https://github.com/JSKAerialRobot/sensor_interface.git | ||
version: e8286e7 | ||
|
||
# RTK-GPS (forked) | ||
- git: | ||
local-name: ublox_gps | ||
uri: https://github.com/tongtybj/ublox.git | ||
version: holybro_rtk_m8p | ||
|
||
# rosserial (forked) | ||
- git: | ||
local-name: rosserial | ||
uri: https://github.com/tongtybj/rosserial.git | ||
version: rosservice_server | ||
|
||
# livox ros driver | ||
# modification for quick build of ROS1 version | ||
- git: | ||
local-name: livox_ros_driver2 | ||
uri: https://github.com/tongtybj/livox_ros_driver2.git | ||
version: PR/ros1 | ||
|
||
# fast lio | ||
# modification for fast odometry based on EKF | ||
- git: | ||
local-name: fast_lio | ||
uri: https://github.com/tongtybj/FAST_LIO | ||
version: PR/odometry | ||
|
||
# realsense | ||
#- git: | ||
# local-name: realsense-ros | ||
# uri: https://github.com/tongtybj/realsense-ros.git | ||
# version: multi_realsense_t265 | ||
|
||
# mocap optitrack | ||
- git: | ||
local-name: mocap_optitrack | ||
uri: https://github.com/sugikazu75/mocap_optitrack.git | ||
version: 50fb60d |
This file was deleted.
Oops, something went wrong.
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
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
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,21 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
# Get VERSION_CODENAME from /etc/os-release | ||
DISTRO=$(grep '^VERSION_CODENAME=' /etc/os-release | cut -d'=' -f2) | ||
|
||
# Conditional branching based on distro_codename | ||
if [ "$DISTRO" = "jammy" ]; then | ||
echo "This is Ubuntu 22.04 (jammy). Install ROS-O" | ||
|
||
sudo apt install -y python3-pip | ||
pip3 install catkin-tools | ||
echo "deb [trusted=yes] https://raw.githubusercontent.com/sugikazu75/ros-o-builder/$DISTRO-one-unstable/repository ./" | sudo tee /etc/apt/sources.list.d/sugikazu75_ros-o-builder.list | ||
sudo apt update | ||
sudo apt install -y python3-rosdep2 | ||
echo "yaml https://raw.githubusercontent.com/sugikazu75/ros-o-builder/$DISTRO-one-unstable/repository/local.yaml debian" | sudo tee /etc/ros/rosdep/sources.list.d/1-sugikazu75_ros-o-builder.list | ||
rosdep update | ||
sudo apt install -y ros-one-desktop-full | ||
sudo apt install -y python3-wstool | ||
fi |