-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from ros-perception/ros2
Port point_cloud_transport to ROS2
- Loading branch information
Showing
91 changed files
with
8,403 additions
and
4,381 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,33 @@ | ||
#!/bin/bash | ||
set -ev | ||
|
||
# Configuration. | ||
export COLCON_WS=~/ws | ||
export COLCON_WS_SRC=${COLCON_WS}/src | ||
export DEBIAN_FRONTEND=noninteractive | ||
export ROS_PYTHON_VERSION=3 | ||
|
||
apt update -qq | ||
apt install -qq -y lsb-release wget curl build-essential | ||
|
||
# Dependencies. | ||
echo "deb http://packages.ros.org/ros2-testing/ubuntu `lsb_release -cs` main" > /etc/apt/sources.list.d/ros2-testing.list | ||
curl -s https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | apt-key add - | ||
apt-get update -qq | ||
apt-get install -y python3-colcon-common-extensions \ | ||
python3-rosdep | ||
|
||
rosdep init | ||
rosdep update | ||
rosdep install --from-paths ./ -i -y -r --rosdistro $ROS_DISTRO $ROSDEP_ARGS | ||
|
||
# Build. | ||
source /opt/ros/$ROS_DISTRO/setup.bash | ||
mkdir -p $COLCON_WS_SRC | ||
cp -r $GITHUB_WORKSPACE $COLCON_WS_SRC | ||
cd $COLCON_WS | ||
colcon build --event-handlers console_direct+ | ||
|
||
# Tests. | ||
colcon test --event-handlers console_direct+ | ||
colcon test-result |
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,24 @@ | ||
name: ROS2 CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
point_cloud_transport_ci: | ||
name: point_cloud_transport CI | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- docker-image: "ubuntu:22.04" | ||
ros-distro: "rolling" | ||
container: | ||
image: ${{ matrix.docker-image }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Build and Test | ||
run: .github/workflows/build-and-test.sh | ||
env: | ||
DOCKER_IMAGE: ${{ matrix.docker-image }} | ||
ROS_DISTRO: ${{ matrix.ros-distro }} |
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 @@ | ||
.vscode/* |
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
Oops, something went wrong.