forked from ctu-vras/point_cloud_transport_plugins
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Alejandro Hernández Cordero <[email protected]>
- Loading branch information
Showing
6 changed files
with
74 additions
and
5 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,37 @@ | ||
#!/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 python3-vcstool python3-vcstools | ||
|
||
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 | ||
echo $1 | ||
wget $1 | ||
vcs import src < point_cloud_transport.repos | ||
rosdep install --from-paths ./ -i -y -r --rosdistro $ROS_DISTRO $ROSDEP_ARGS | ||
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 https://raw.githubusercontent.com/${{ github.repository }}/${{ github.sha }}/point_cloud_transport.repos | ||
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
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,5 @@ | ||
repositories: | ||
point_cloud_transport: | ||
type: git | ||
url: https://github.com/john-maidbot/point_cloud_transport | ||
version: ros2 |