Skip to content

Commit

Permalink
add iron test
Browse files Browse the repository at this point in the history
  • Loading branch information
Ar-Ray-code committed Aug 11, 2024
1 parent 1c3314a commit 407e7f2
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 3 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/ci_iron.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: ci_iron

on:
push:
branches:
- "iron"
pull_request:
types: [opened, synchronize, labeled]

jobs:
ci:
runs-on: ${{ matrix.os }}
if: |
((github.event.action == 'labeled') && (github.event.label.name == 'TESTING')) ||
((github.event.action == 'synchronize') && contains(github.event.pull_request.labels.*.name, 'TESTING'))
container:
image: osrf/ros:${{ matrix.ros_distribution }}-desktop
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04]
ros_distribution: [iron]
steps:
- uses: actions/checkout@v3
- uses: ros-tooling/[email protected]
- name: Build and Test
uses: ros-tooling/[email protected]
with:
target-ros2-distro: ${{ matrix.ros_distribution }}
skip-tests: true
vcs-repo-file-url: |
repos/cyclonedds.repos
repos/ds.repos
repos/generate_parameter_library.repos
repos/micro_ros_agent.repos
repos/nmea.repos
repos/rqt_image_view.repos
repos/urg.repos
repos/velodyne.repos
repos/webcam.repos
5 changes: 2 additions & 3 deletions .github/workflows/ci_jazzy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@ jobs:
ci:
runs-on: ${{ matrix.os }}
if: |
((github.event.action == 'labeled') && (github.event.label.name == 'TESTING') && (github.base_ref == 'jazzy' )) ||
((github.event.action == 'synchronize') && (github.base_ref == 'jazzy') && contains(github.event.pull_request.labels.*.name, 'TESTING')) ||
(github.ref_name == 'jazzy')
((github.event.action == 'labeled') && (github.event.label.name == 'TESTING')) ||
((github.event.action == 'synchronize') && contains(github.event.pull_request.labels.*.name, 'TESTING'))
container:
image: osrf/ros:${{ matrix.ros_distribution }}-desktop
timeout-minutes: 20
Expand Down

0 comments on commit 407e7f2

Please sign in to comment.