Skip to content

Commit

Permalink
Add in humble Github workflow.
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Lalancette <[email protected]>
  • Loading branch information
clalancette committed Sep 14, 2023
1 parent 19473b0 commit 5582c35
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/humble-build-ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Basic Build Workflow

on:
- pull_request
- push

jobs:
build-humble:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
container:
image: rostooling/setup-ros-docker:ubuntu-jammy-ros-humble-desktop-latest
steps:
- name: Build Environment
uses: ros-tooling/[email protected]
with:
required-ros-distributions: humble
- name: Run Tests
uses: ros-tooling/[email protected]
id: humble_action_ros_ci_step
with:
package-name: |
joy
joy_linux
sdl2_vendor
spacenav
wiimote
wiimote_msgs
target-ros2-distro: humble
- name: Upload logs
uses: actions/upload-artifact@v1
with:
name: colcon-logs
path: ${{ steps.humble_action_ros_ci_step.outputs.ros-workspace-directory-name }}/log
if: always()

0 comments on commit 5582c35

Please sign in to comment.