Skip to content

Commit 099b34f

Browse files
author
Felix Exner (fexner)
authored
Add a prerelease check that calls bloom-generate (#134)
* Add prerelease workflow * Remove license entry for non-existent Dockerfile
1 parent de414ac commit 099b34f

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

.github/workflows/prerelease.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: ROS prerelease test
2+
on:
3+
pull_request:
4+
branches:
5+
- master
6+
7+
jobs:
8+
prerelease_test:
9+
runs-on: ubuntu-latest
10+
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
ROS_DISTRO: [humble, rolling]
15+
OS_VERSION: [jammy]
16+
include:
17+
- ROS_DISTRO: melodic
18+
OS_VERSION: bionic
19+
- ROS_DISTRO: noetic
20+
OS_VERSION: focal
21+
- ROS_DISTRO: foxy
22+
OS_VERSION: focal
23+
24+
steps:
25+
- uses: actions/checkout@v1
26+
- run: sudo apt-get install -y python3-pip
27+
- run: sudo pip3 install bloom rosdep
28+
- run: sudo rosdep init
29+
- run: rosdep update
30+
- run: bloom-generate rosdebian --ros-distro ${{ matrix.ROS_DISTRO }} --os-name ubuntu --os-version ${{ matrix.OS_VERSION }}

package.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<license file="LICENSE_apache_2_0">Apache-2.0</license>
1414
<license file="include/ur_client_library/queue/LICENSE.md">BSD-2-Clause</license>
1515
<license file="include/ur_client_library/queue/atomicops.h">Zlib</license>
16-
<license file="tests/resources/dockerursim/Dockerfile">MIT</license>
1716

1817
<url type="website">http://wiki.ros.org/ur_client_library</url>
1918
<url type="bugtracker">https://github.com/UniversalRobots/Universal_Robots_Client_Library/issues</url>

0 commit comments

Comments
 (0)