Skip to content

Commit

Permalink
Feature/add ci (#63)
Browse files Browse the repository at this point in the history
* add source dependencies
* add workflow for humble CI
  • Loading branch information
Cakem1x authored Oct 26, 2024
1 parent ec8d06b commit 132c024
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .github/workflows/humble.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Humble CI - Build and Test

on:
push:
branches:
- 'humble'
pull_request:
workflow_dispatch:
branches:
- '*'

jobs:
build_and_test:
uses: naturerobots/github_automation_public/.github/workflows/humble_ci.yaml@main
secrets: inherit
2 changes: 1 addition & 1 deletion mesh_map/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<depend>geometry_msgs</depend>
<depend>mesh_client</depend>
<depend>mesh_msgs_conversions</depend> <!-- TODO mesh_msgs_conversions from mesh_tools is not packages for humble, use it from source for now (mesh_tools repo) -->
<depend>mesh_msgs_conversions</depend> <!-- Note: mesh_msgs_conversions from mesh_tools is not packaged for humble, need to get it from source for now (mesh_tools repo) -->
<depend>pluginlib</depend>
<depend>rclcpp</depend>
<depend>tf2_geometry_msgs</depend>
Expand Down
15 changes: 15 additions & 0 deletions source_dependencies.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Every repository listed here will get cloned and built during CI runs.
# Use this for repositories that cannot be installed via rosdep.
repositories:
uos/lvr2:
type: git
url: https://github.com/uos/lvr2.git
version: humble
naturerobots/mesh_tools:
type: git
url: https://github.com/naturerobots/mesh_tools.git
version: humble
naturerobots/move_base_flex:
type: git
url: https://github.com/naturerobots/move_base_flex.git
version: humble

0 comments on commit 132c024

Please sign in to comment.