-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
industrial_ciのワークフローを追加。READMEにワークフローの結果を追加。 (#2)
* industrial_ci追加 * CIの不要な処理を削除 * ワークフローの結果表示追加 * industrial_ciのバージョン更新 Co-authored-by: Daisuke Sato <[email protected]> --------- Co-authored-by: Daisuke Sato <[email protected]>
- Loading branch information
Showing
3 changed files
with
35 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,31 @@ | ||
name: industrial_ci | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- '**.md' | ||
pull_request: | ||
paths-ignore: | ||
- '**.md' | ||
schedule: | ||
- cron: "0 2 * * 0" # Weekly on Sundays at 02:00 | ||
|
||
jobs: | ||
industrial_ci: | ||
continue-on-error: ${{ matrix.experimental }} | ||
strategy: | ||
matrix: | ||
env: | ||
- { ROS_DISTRO: melodic, ROS_REPO: main } | ||
- { ROS_DISTRO: noetic, ROS_REPO: main } | ||
experimental: [false] | ||
include: | ||
- env: { ROS_DISTRO: melodic, ROS_REPO: testing } | ||
experimental: true | ||
- env: { ROS_DISTRO: noetic, ROS_REPO: testing } | ||
experimental: true | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: "ros-industrial/industrial_ci@master" | ||
env: ${{ matrix.env }} |
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
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