Skip to content

Commit ab28728

Browse files
Add SLATE noetic workflow
1 parent b61ef3e commit ab28728

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/slate-noetic.yaml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: build-slate-noetic
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- devel
8+
pull_request:
9+
branches:
10+
- main
11+
- devel
12+
workflow_dispatch:
13+
14+
defaults:
15+
run:
16+
shell: bash
17+
18+
jobs:
19+
slate-noetic:
20+
strategy:
21+
matrix:
22+
env:
23+
- {ROS_DISTRO: noetic, ROS_REPO: main, BUILDER: catkin_tools}
24+
- {ROS_DISTRO: noetic, ROS_REPO: main, BUILDER: catkin_make}
25+
runs-on: ubuntu-latest
26+
steps:
27+
- uses: actions/checkout@v4
28+
- name: Create src directory for slate
29+
run: |
30+
rm interbotix_ros_slate/CATKIN_IGNORE
31+
mkdir src
32+
mv interbotix_ros_slate src
33+
- uses: 'ros-industrial/industrial_ci@master'
34+
env: ${{matrix.env}}

0 commit comments

Comments
 (0)