Skip to content

Commit 67b06f5

Browse files
authored
Merge pull request #243 from fmessmer/test_noetic
test noetic
2 parents b82e794 + b4ef0d6 commit 67b06f5

File tree

26 files changed

+72
-34
lines changed

26 files changed

+72
-34
lines changed

.travis.rosinstall.noetic

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
- git:
2+
local-name: cob_command_tools
3+
uri: https://github.com/ipa320/cob_command_tools.git
4+
version: indigo_dev
5+
- git:
6+
local-name: cob_driver
7+
uri: https://github.com/ipa320/cob_driver.git
8+
version: kinetic_dev

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,15 @@ env:
1313
- CATKIN_LINT_ARGS='--ignore description_boilerplate --ignore target_name_collision'
1414
- CMAKE_ARGS=-DCMAKE_BUILD_TYPE=Release
1515
- NOT_TEST_DOWNSTREAM=true
16-
- PYLINT_ARGS="--output-format=parseable --errors-only --ignored-modules=catkin_pkg,pylab"
16+
- PYLINT_ARGS="--output-format=parseable --errors-only --ignored-modules=catkin_pkg,pylab,setuptools"
1717
- PYLINT2_CHECK=true
1818
- PYLINT3_CHECK=true
1919
- ROS_REPO=ros
2020
- VERBOSE_OUTPUT=false
2121
- VERBOSE_TESTS=false
2222
matrix:
2323
- ROS_DISTRO=melodic
24+
- ROS_DISTRO=noetic UPSTREAM_WORKSPACE='.travis.rosinstall.noetic -cob_command_tools/cob_command_gui -cob_command_tools/cob_command_tools' CATKIN_LINT_ARGS='--ignore description_boilerplate --ignore target_name_collision --ignore unknown_package' PYLINT2_CHECK=true PYLINT3_CHECK=false # noetic is python3 only, i.e. only pylint command exists which is used as executable in PYLINT2_CHECK
2425
install:
2526
- git clone --quiet --depth 1 https://github.com/fmessmer/industrial_ci.git .industrial_ci -b master_pylint
2627
script:

cob_base_controller_utils/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 2.8.3)
1+
cmake_minimum_required(VERSION 3.0.2)
22
project(cob_base_controller_utils)
33

44
find_package(catkin REQUIRED COMPONENTS geometry_msgs message_generation nav_msgs roscpp std_msgs std_srvs tf tf2 urdf)

cob_base_velocity_smoother/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 2.8.3)
1+
cmake_minimum_required(VERSION 3.0.2)
22
project(cob_base_velocity_smoother)
33

44
find_package(catkin REQUIRED COMPONENTS dynamic_reconfigure geometry_msgs nav_msgs roscpp roslint std_msgs)

cob_cartesian_controller/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 2.8.3)
1+
cmake_minimum_required(VERSION 3.0.2)
22
project(cob_cartesian_controller)
33

44
find_package(catkin REQUIRED COMPONENTS actionlib actionlib_msgs cob_srvs geometry_msgs message_generation roscpp roslint std_msgs std_srvs tf visualization_msgs)

cob_cartesian_controller/package.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
<package format="2">
1+
<?xml version="1.0"?>
2+
<?xml-model
3+
href="http://download.ros.org/schema/package_format3.xsd"
4+
schematypens="http://www.w3.org/2001/XMLSchema"?>
5+
<package format="3">
26
<name>cob_cartesian_controller</name>
37
<version>0.8.11</version>
48
<description>
@@ -12,6 +16,8 @@
1216
<license>Apache 2.0</license>
1317

1418
<buildtool_depend>catkin</buildtool_depend>
19+
<buildtool_depend condition="$ROS_PYTHON_VERSION == 2">python-setuptools</buildtool_depend>
20+
<buildtool_depend condition="$ROS_PYTHON_VERSION == 3">python3-setuptools</buildtool_depend>
1521
<build_depend>roslint</build_depend>
1622

1723
<build_depend>message_generation</build_depend>

cob_cartesian_controller/setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
#!/usr/bin/env python
22

3-
from distutils.core import setup
3+
from setuptools import setup
44
from catkin_pkg.python_setup import generate_distutils_setup
55

66
d = generate_distutils_setup(
7-
## don't do this unless you want a globally visible script
8-
# scripts=['bin/myscript'],
97
packages=['simple_cartesian_interface'],
108
package_dir={'': 'src'}
119
)

cob_collision_velocity_filter/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 2.8.3)
1+
cmake_minimum_required(VERSION 3.0.2)
22
project(cob_collision_velocity_filter)
33

44
find_package(catkin REQUIRED COMPONENTS

cob_control/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 2.8.3)
1+
cmake_minimum_required(VERSION 3.0.2)
22
project(cob_control)
33
find_package(catkin REQUIRED)
44
catkin_metapackage()

cob_control_mode_adapter/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 2.8.3)
1+
cmake_minimum_required(VERSION 3.0.2)
22
project(cob_control_mode_adapter)
33

44
find_package(catkin REQUIRED COMPONENTS controller_manager_msgs roscpp roslint std_msgs)

0 commit comments

Comments
 (0)