File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ name : ci_humble
2+
3+ on :
4+ push :
5+ branches :
6+ - " humble"
7+ pull_request :
8+ types : [opened, synchronize, labeled]
9+
10+ jobs :
11+ ci :
12+ runs-on : ${{ matrix.os }}
13+ if : |
14+ ((github.event.action == 'labeled') && (github.event.label.name == 'TESTING') && (github.base_ref == 'humble' )) ||
15+ ((github.event.action == 'synchronize') && (github.base_ref == 'humble') && contains(github.event.pull_request.labels.*.name, 'TESTING')) ||
16+ (github.ref_name == 'humble')
17+ container :
18+ image : osrf/ros:${{ matrix.ros_distribution }}-desktop
19+ timeout-minutes : 20
20+ strategy :
21+ fail-fast : false
22+ matrix :
23+ os : [ubuntu-22.04]
24+ ros_distribution : [humble]
25+ steps :
26+ - uses : actions/checkout@v3
27+ - uses : ros-tooling/setup-ros@v0.7
28+ - name : Build and Test
29+ uses : ros-tooling/action-ros-ci@v0.3
30+ with :
31+ target-ros2-distro : ${{ matrix.ros_distribution }}
32+ import-token : ${{ secrets.GITHUB_TOKEN }}
33+ package-name : |
34+ minecraft_utils
35+ minecraft_utils_visualization
You can’t perform that action at this time.
0 commit comments