Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add generic humble workflow #75

Open
wants to merge 4 commits into
base: humble
Choose a base branch
from
Open
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
55 changes: 55 additions & 0 deletions .github/workflows/humble.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: humble

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

defaults:
run:
shell: bash

jobs:
humble:
strategy:
matrix:
env:
- {ROS_DISTRO: humble, ROS_REPO: main}
runs-on: ubuntu-22.04
container:
image: ubuntu:jammy
env:
CCACHE_DIR: "${{ github.workspace }}/.ccache"
steps:
- name: Checkout ROS Toolboxes
uses: actions/checkout@v3
with:
submodules: recursive
path: src/interbotix_ros_toolboxes
- name: Checkout ROS Core
uses: actions/checkout@v3
with:
repository: interbotix/interbotix_ros_core
ref: humble
submodules: recursive
path: src/interbotix_ros_core
- name: Install non-rosdep Python dependencies
run: python3 -m pip install modern-robotics transforms3d
- name: Prepare Workspace
run: |
rm src/interbotix_ros_core/interbotix_ros_common_drivers/COLCON_IGNORE
rm src/interbotix_ros_core/interbotix_ros_slate/COLCON_IGNORE
rm src/interbotix_ros_core/interbotix_ros_xseries/COLCON_IGNORE
rm src/interbotix_ros_toolboxes/interbotix_common_toolbox/interbotix_landmark_modules/COLCON_IGNORE
rm src/interbotix_ros_toolboxes/interbotix_common_toolbox/interbotix_moveit_interface_msgs/COLCON_IGNORE
rm src/interbotix_ros_toolboxes/interbotix_common_toolbox/interbotix_moveit_interface/COLCON_IGNORE
rm src/interbotix_ros_toolboxes/interbotix_io_toolbox/COLCON_IGNORE
rm src/interbotix_ros_toolboxes/interbotix_perception_toolbox/COLCON_IGNORE
- name: ROS-I CI
uses: ros-industrial/industrial_ci@master
with:
config: ${{toJSON(matrix.env)}}
Loading