Skip to content

Commit

Permalink
Scheduled CI for Iron (#401)
Browse files Browse the repository at this point in the history
(cherry picked from commit 38504d1)

# Conflicts:
#	.github/workflows/ci-iron.yaml
  • Loading branch information
christophfroehlich authored and mergify[bot] committed Aug 26, 2024
1 parent ad7af30 commit 38b6a01
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .github/workflows/ci-iron.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
name: gz_ros2_control CI - Iron

on:
<<<<<<< HEAD
=======
workflow_dispatch:
>>>>>>> 38504d1 (Scheduled CI for Iron (#401))
pull_request:
branches: [ iron ]
push:
branches: [ iron ]
<<<<<<< HEAD
=======
schedule:
# Run every morning to detect flakiness and broken dependencies
- cron: '33 4 * * *'
>>>>>>> 38504d1 (Scheduled CI for Iron (#401))

jobs:
build:
Expand Down Expand Up @@ -38,7 +48,18 @@ jobs:
container:
image: ${{ matrix.docker-image }}
steps:
<<<<<<< HEAD
- uses: actions/checkout@v4
=======
- name: Checkout code
if: github.event_name != 'schedule'
uses: actions/checkout@v4
- name: Checkout code for scheduled workflow
if: github.event_name == 'schedule'
uses: actions/checkout@v4
with:
ref: iron
>>>>>>> 38504d1 (Scheduled CI for Iron (#401))
- name: Setup colcon workspace
id: configure
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Rolling | Harmonic | [master](https://github.com/ros-controls/gz_ros2_control/tr
ROS 2 Distro | Branch | Build status | Documentation
:----------: | :----: | :----------: | :-----------:
**Rolling** | [`master`](https://github.com/ros-controls/gz_ros2_control/tree/master) | [![gazebo_ros2_control CI - Rolling](https://github.com/ros-controls/gz_ros2_control/actions/workflows/ci-rolling.yaml/badge.svg?branch=master)](https://github.com/ros-controls/gz_ros2_control/actions/workflows/ci-rolling.yaml) | [Documentation](https://control.ros.org/master/index.html) <br /> [API Reference](https://control.ros.org/master/doc/api/index.html)
**Iron** | [`iron`](https://github.com/ros-controls/gz_ros2_control/tree/iron) | [![gazebo_ros2_control CI - Iron](https://github.com/ros-controls/gz_ros2_control/actions/workflows/ci-iron.yaml/badge.svg?branch=iron)](https://github.com/ros-controls/gz_ros2_control/actions/workflows/ci-iron.yaml) | [Documentation](https://control.ros.org/iron/index.html) <br /> [API Reference](https://control.ros.org/iron/doc/api/index.html)
**Iron** | [`iron`](https://github.com/ros-controls/gz_ros2_control/tree/iron) | [![gazebo_ros2_control CI - Iron](https://github.com/ros-controls/gz_ros2_control/actions/workflows/ci-iron.yaml/badge.svg?branch=master)](https://github.com/ros-controls/gz_ros2_control/actions/workflows/ci-iron.yaml) | [Documentation](https://control.ros.org/iron/index.html) <br /> [API Reference](https://control.ros.org/iron/doc/api/index.html)
**Humble** | [`humble`](https://github.com/ros-controls/gz_ros2_control/tree/humble) | [![ign_ros2_control CI - Humble](https://github.com/ros-controls/gz_ros2_control/actions/workflows/ci-humble.yaml/badge.svg?branch=humble)](https://github.com/ros-controls/gz_ros2_control/actions/workflows/ci-humble.yaml) | [Documentation](https://control.ros.org/humble/index.html) <br /> [API Reference](https://control.ros.org/humble/doc/api/index.html)
## Documentation
See the [documentation file](doc/index.rst) or [control.ros.org](https://control.ros.org/master/doc/gz_ros2_control/doc/index.html)
Expand Down

0 comments on commit 38b6a01

Please sign in to comment.