Skip to content

Commit

Permalink
add nightly workflow files for each distribution. (#73)
Browse files Browse the repository at this point in the history
Signed-off-by: Tomoya.Fujita <[email protected]>
(cherry picked from commit 213ba36)
  • Loading branch information
fujitatomoya authored and mergify[bot] committed Jan 18, 2025
1 parent be665e2 commit 6550267
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/humble-nightly.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Nightly Build for humble

on:
schedule:
- cron: '0 13 * * *' # Runs every day at midnight, 13:00 UTC

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
container:
image: ros:humble
env:
ROS_DISTRO: humble
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Build and Test with ROS humble
shell: bash
run: |
./scripts/github_workflows.sh
23 changes: 23 additions & 0 deletions .github/workflows/jazzy-nightly.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Nightly Build for jazzy

on:
schedule:
- cron: '0 13 * * *' # Runs every day at midnight, 13:00 UTC

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
container:
image: ros:jazzy
env:
ROS_DISTRO: jazzy
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Build and Test with ROS jazzy
shell: bash
run: |
./scripts/github_workflows.sh
23 changes: 23 additions & 0 deletions .github/workflows/rolling-nightly.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Nightly Build for rolling

on:
schedule:
- cron: '0 13 * * *' # Runs every day at midnight, 13:00 UTC

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
container:
image: ros:rolling
env:
ROS_DISTRO: rolling
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Build and Test with ROS rolling
shell: bash
run: |
./scripts/github_workflows.sh
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[![humble](https://github.com/fujitatomoya/rcl_logging_syslog/actions/workflows/humble.yaml/badge.svg?branch=humble)](https://github.com/fujitatomoya/rcl_logging_syslog/actions/workflows/humble.yaml) [![jazzy](https://github.com/fujitatomoya/rcl_logging_syslog/actions/workflows/jazzy.yaml/badge.svg?branch=jazzy)](https://github.com/fujitatomoya/rcl_logging_syslog/actions/workflows/jazzy.yaml) [![rolling](https://github.com/fujitatomoya/rcl_logging_syslog/actions/workflows/rolling.yaml/badge.svg?branch=rolling)](https://github.com/fujitatomoya/rcl_logging_syslog/actions/workflows/rolling.yaml)
[![humble-nightly](https://github.com/fujitatomoya/rcl_logging_syslog/actions/workflows/humble-nightly.yaml/badge.svg?branch=humble)](https://github.com/fujitatomoya/rcl_logging_syslog/actions/workflows/humble-nightly.yaml) [![jazzy-nightly](https://github.com/fujitatomoya/rcl_logging_syslog/actions/workflows/jazzy-nightly.yaml/badge.svg?branch=jazzy)](https://github.com/fujitatomoya/rcl_logging_syslog/actions/workflows/jazzy-nightly.yaml) [![rolling-nightly](https://github.com/fujitatomoya/rcl_logging_syslog/actions/workflows/rolling-nightly.yaml/badge.svg?branch=rolling)](https://github.com/fujitatomoya/rcl_logging_syslog/actions/workflows/rolling-nightly.yaml)

# rcl_logging_syslog 🚢🚀🚂

Expand Down

0 comments on commit 6550267

Please sign in to comment.