forked from UniversalRobots/Universal_Robots_Client_Library
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (32 loc) · 1012 Bytes
/
prerelease.yml
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
35
name: ROS prerelease test
on:
pull_request:
branches:
- master
jobs:
prerelease_test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- ROS_DISTRO: melodic
OS_VERSION: bionic
- ROS_DISTRO: noetic
OS_VERSION: focal
- ROS_DISTRO: humble
OS_VERSION: jammy
- ROS_DISTRO: iron
OS_VERSION: jammy
- ROS_DISTRO: jazzy
OS_VERSION: noble
- ROS_DISTRO: rolling
OS_VERSION: noble
steps:
- uses: actions/checkout@v1
- 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 }}