Skip to content

Commit

Permalink
Merge pull request #23 from Ar-Ray-code/jazzy_ci
Browse files Browse the repository at this point in the history
add ci
  • Loading branch information
Ar-Ray-code authored Aug 12, 2024
2 parents c0caff5 + 113eadf commit 4402607
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/ci_iron.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
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.base_ref == 'iron' )) ||
((github.event.action == 'synchronize') && (github.base_ref == 'iron') && contains(github.event.pull_request.labels.*.name, 'TESTING')) ||
(github.ref_name == 'iron')
container:
image: osrf/ros:${{ matrix.ros_distribution }}-desktop
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
ros_distribution: [iron]
steps:
- uses: actions/checkout@v4
- uses: ros-tooling/[email protected]
with:
required-ros-distributions: ${{ matrix.ros_distribution }}
- 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/urg.repos
repos/velodyne.repos
44 changes: 44 additions & 0 deletions .github/workflows/ci_jazzy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: ci_jazzy

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

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')
container:
image: osrf/ros:${{ matrix.ros_distribution }}-desktop
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04]
ros_distribution: [jazzy]
steps:
- uses: actions/checkout@v4
- uses: ros-tooling/[email protected]
with:
required-ros-distributions: ${{ matrix.ros_distribution }}
- 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

0 comments on commit 4402607

Please sign in to comment.