Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI
on:
push:
pull_request:
schedule:
# Run every Mondays at 8.30 am
- cron: '30 8 * * 1'

jobs:
build:
name: ROS noetic on focal
runs-on: ubuntu-latest
container:
image: ros:noetic-ros-base-focal
steps:
- uses: actions/checkout@v4
- uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: noetic
- uses: ros-tooling/action-ros-ci@v0.3
with:
package-name: p_rosbridge_server_cpp
target-ros1-distro: noetic
vcs-repo-file-url: "${{ github.workspace }}/.github/workflows/deps.repos"
9 changes: 9 additions & 0 deletions .github/workflows/deps.repos
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
repositories:
librosqt:
type: git
url: https://github.com/1r0b1n0/librosqt.git
version: master
ros_babel_fish:
type: git
url: https://github.com/StefanFabian/ros_babel_fish.git
version: kinetic
25 changes: 10 additions & 15 deletions p_rosbridge_server_cpp/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,19 @@
<license>MIT</license>

<buildtool_depend>catkin</buildtool_depend>
<build_depend>librosqt</build_depend>
<build_depend>ros_babel_fish</build_depend>
<build_depend>roscpp</build_depend>
<build_depend>std_msgs</build_depend>
<build_depend>rosbridge_cpp_msgs</build_depend>
<build_export_depend>librosqt</build_export_depend>
<build_export_depend>ros_babel_fish</build_export_depend>
<build_export_depend>roscpp</build_export_depend>
<build_export_depend>std_msgs</build_export_depend>
<build_export_depend>rosbridge_cpp_msgs</build_export_depend>
<exec_depend>librosqt</exec_depend>
<exec_depend>ros_babel_fish</exec_depend>
<exec_depend>roscpp</exec_depend>
<exec_depend>std_msgs</exec_depend>
<exec_depend>rosbridge_cpp_msgs</exec_depend>
<depend>libqt5-core</depend>
<depend>libqt5-websockets-dev</depend>
<depend>librosqt</depend>
<depend>ros_babel_fish</depend>
<depend>roscpp</depend>
<depend>std_msgs</depend>
<depend>rosbridge_cpp_msgs</depend>

<!--depend>mdt_msgs</depend-->

<test_depend>python3-twisted</test_depend>
<test_depend>python3-autobahn</test_depend>

<!-- The export tag contains other, unspecified, tags -->
<export>
<!-- Other tools can request additional information be placed here -->
Expand Down