mirror of
https://github.com/elephantrobotics/mycobot_ros.git
synced 2026-07-05 19:47:04 +00:00
Add Industrial CI
This commit is contained in:
parent
41db00fe31
commit
e057007d79
1 changed files with 31 additions and 0 deletions
31
.github/workflows/industrialci.yml
vendored
Normal file
31
.github/workflows/industrialci.yml
vendored
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
name: industrial_ci
|
||||
|
||||
on:
|
||||
push:
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
- '**.jpg'
|
||||
- '**.pdf'
|
||||
- '**.png'
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
- '**.jpg'
|
||||
- '**.pdf'
|
||||
- '**.png'
|
||||
schedule:
|
||||
- cron: "0 1 * * 2" # Weekly on Tuesdays at 01:00(GMT)
|
||||
|
||||
jobs:
|
||||
industrial_ci:
|
||||
continue-on-error: true
|
||||
strategy:
|
||||
matrix:
|
||||
env:
|
||||
- { ROS_DISTRO: melodic, ROS_REPO: main }
|
||||
# - { ROS_DISTRO: noetic, ROS_REPO: main }
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: "ros-industrial/industrial_ci@master"
|
||||
env: ${{ matrix.env }}
|
||||
Loading…
Add table
Reference in a new issue