forked from sniekum/ar_track_alvar
-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* FindMarkerBundlesNoKinect: implement params and dynamic reconfigure * publish transform in output frame * FindMarkerBundles: clear errors reported by linter * FindMarkerBundles: clear errors reported by linter * FindMarkerBundlesNoKinect: restructure * FindMarkerBundles: port features from FindMarkerBundlesNoKinect * add pre-commit config * reformat files * convert OpenCV C API to C++ API * more work on CV C to C++ port * Bump CMake version to avoid CMP0048 warning * fix add_dependencies * update travis config * only test noetic * disable rostests * fix catkin_lint * added time stamp of image to header of array message * Camera: fix problem when findHomography returns empty matrix * Marker: copy vector on initialize * fix OpenCV error * remove deprecated cmake_policy * Review Changes --------- Co-authored-by: Alexander Rössler <[email protected]> Co-authored-by: Alexander Rössler <[email protected]> Co-authored-by: fmessmer <[email protected]> Co-authored-by: Christopher Lalau Keraly <[email protected]> Co-authored-by: Denis Lehmann <[email protected]>
- Loading branch information
1 parent
a870d5f
commit 9c62568
Showing
154 changed files
with
23,140 additions
and
19,218 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,22 @@ | ||
sudo: required | ||
dist: trusty | ||
language: generic | ||
|
||
compiler: | ||
- gcc | ||
services: | ||
- docker | ||
|
||
notifications: | ||
email: | ||
on_success: change | ||
on_failure: always | ||
recipients: | ||
- [email protected] | ||
env: | ||
global: | ||
- ROS_PARALLEL_JOBS=-j4 | ||
- CATKIN_LINT=pedantic | ||
- CATKIN_LINT_ARGS='--ignore description_boilerplate' | ||
- CMAKE_ARGS=-DCMAKE_BUILD_TYPE=Release | ||
- PYLINT_ARGS='--output-format=parseable --errors-only' | ||
- PYLINT_CHECK=true | ||
- ROS_REPO=main | ||
matrix: | ||
- ROS_DISTRO="kinetic" ROS_REPOSITORY_PATH=http://packages.ros.org/ros/ubuntu USE_DEB=true NOT_TEST_INSTALL=true ABICHECK_URL='github:ros-perception/ar_track_alvar/#kinetic-devel' | ||
- ROS_DISTRO="kinetic" ROS_REPOSITORY_PATH=http://packages.ros.org/ros-shadow-fixed/ubuntu USE_DEB=true NOT_TEST_INSTALL=true VERBOSE_OUTPUT='true' | ||
- ROS_DISTRO="kinetic" PRERELEASE=true | ||
- ROS_DISTRO="lunar" ROS_REPOSITORY_PATH=http://packages.ros.org/ros/ubuntu USE_DEB=true NOT_TEST_INSTALL=true | ||
- ROS_DISTRO="lunar" ROS_REPOSITORY_PATH=http://packages.ros.org/ros-shadow-fixed/ubuntu USE_DEB=true NOT_TEST_INSTALL=true VERBOSE_OUTPUT='true' | ||
- ROS_DISTRO="lunar" PRERELEASE=true | ||
- ROS_DISTRO="melodic" ROS_REPOSITORY_PATH=http://packages.ros.org/ros/ubuntu USE_DEB=true NOT_TEST_INSTALL=true ABICHECK_URL='github:ros-perception/ar_track_alvar/#kinetic-devel' | ||
- ROS_DISTRO="melodic" ROS_REPOSITORY_PATH=http://packages.ros.org/ros-shadow-fixed/ubuntu USE_DEB=true NOT_TEST_INSTALL=true VERBOSE_OUTPUT='true' | ||
- ROS_DISTRO="melodic" PRERELEASE=true | ||
matrix: | ||
allow_failures: | ||
- env: ROS_DISTRO="kinetic" PRERELEASE=true | ||
- env: ROS_DISTRO="lunar" ROS_REPOSITORY_PATH=http://packages.ros.org/ros/ubuntu USE_DEB=true NOT_TEST_INSTALL=true | ||
- env: ROS_DISTRO="lunar" ROS_REPOSITORY_PATH=http://packages.ros.org/ros-shadow-fixed/ubuntu USE_DEB=true NOT_TEST_INSTALL=true VERBOSE_OUTPUT='true' | ||
- env: ROS_DISTRO="lunar" PRERELEASE=true | ||
- env: ROS_DISTRO="melodic" PRERELEASE=true | ||
- ROS_DISTRO=noetic | ||
install: | ||
- git clone https://github.com/ros-industrial/industrial_ci.git .ci_config | ||
|
||
- git clone --quiet --depth 1 https://github.com/ros-industrial/industrial_ci.git .industrial_ci -b master | ||
script: | ||
- .ci_config/travis.sh | ||
- .industrial_ci/travis.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.