We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b61ef3e commit ab28728Copy full SHA for ab28728
.github/workflows/slate-noetic.yaml
@@ -0,0 +1,34 @@
1
+name: build-slate-noetic
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - devel
8
+ pull_request:
9
10
11
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