增加三指 320/630 moveit RVIZ跟随demo #888
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
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: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
env: | |
- { ROS_DISTRO: melodic, ROS_REPO: main } | |
# - { ROS_DISTRO: noetic, ROS_REPO: main } | |
steps: | |
- name: Setup directories | |
run: mkdir -p ros_ws/src | |
- name: checkout | |
uses: actions/checkout@v2 | |
with: | |
path: ros_ws/src | |
- uses: "ros-industrial/industrial_ci@master" | |
env: ${{ matrix.env }} |