Skip to content

Commit 03df624

Browse files
committed
new humble workflow
1 parent d286d2f commit 03df624

File tree

5 files changed

+38
-79
lines changed

5 files changed

+38
-79
lines changed

.github/workflows/humble-ros.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/workflows/master-ros.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/workflows/melodic-ros.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/ros-humble.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: CI-humble
2+
on:
3+
push:
4+
branches:
5+
- 'develop'
6+
- 'humble'
7+
pull_request:
8+
branches:
9+
- 'develop'
10+
- 'humble'
11+
workflow_dispatch:
12+
branches:
13+
- '*'
14+
jobs:
15+
ros_humble:
16+
name: ROS 2 humble
17+
runs-on: ubuntu-22.04
18+
strategy:
19+
fail-fast: false
20+
env:
21+
CCACHE_DIR: "${{ github.workspace }}/.ccache"
22+
steps:
23+
- name: Checkout LVR2
24+
uses: actions/checkout@v4
25+
with:
26+
submodules: recursive
27+
28+
- name: Compile for ROS2 humble
29+
uses: 'ros-industrial/industrial_ci@master'
30+
env:
31+
ROS_DISTRO: humble
32+
ROS_REPO: main
33+
- uses: actions/cache@v2
34+
with:
35+
path: ${{ env.CCACHE_DIR }}
36+
key: ccache-humble-${{github.run_id}}
37+
restore-keys: |
38+
ccache-humble-
File renamed without changes.

0 commit comments

Comments
 (0)