-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add nightly workflow files for each distribution. (#73)
Signed-off-by: Tomoya.Fujita <[email protected]> (cherry picked from commit 213ba36)
- Loading branch information
1 parent
be665e2
commit 6550267
Showing
4 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters