forked from UniversalRobots/Universal_Robots_Client_Library
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (31 loc) · 1 KB
/
Copy pathprerelease.yml
File metadata and controls
34 lines (31 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: ROS prerelease test
on:
pull_request:
branches:
- master
jobs:
prerelease_test:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'release')
strategy:
fail-fast: false
matrix:
include:
- ROS_DISTRO: humble
OS_VERSION: jammy
- ROS_DISTRO: jazzy
OS_VERSION: noble
- ROS_DISTRO: kilted
OS_VERSION: noble
- ROS_DISTRO: lyrical
OS_VERSION: resolute
- ROS_DISTRO: rolling
OS_VERSION: resolute
steps:
- uses: actions/checkout@v7
- run: sudo apt-get install -y python3-pip
- run: sudo pip3 install empy==3.3.4 # Added as bloom not yet support empy v4
- run: sudo pip3 install bloom rosdep
- run: sudo rosdep init
- run: rosdep update --rosdistro=${{ matrix.ROS_DISTRO }}
- run: bloom-generate rosdebian --ros-distro ${{ matrix.ROS_DISTRO }} --os-name ubuntu --os-version ${{ matrix.OS_VERSION }}