-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into Deserialization
- Loading branch information
Showing
24 changed files
with
1,875 additions
and
1,806 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
definitions: | ||
- &empty_repo | ||
type: zip | ||
url: data:application/zip;base64,UEsFBgAAAAAAAAAAAAAAAAAAAAAAAA== | ||
|
||
repositories: | ||
ros2/rosidl_typesupport_connext/COLCON_IGNORE: *empty_repo | ||
ros2/rmw_connext/COLCON_IGNORE: *empty_repo | ||
|
||
ros2/rosidl_typesupport_fastrtps/COLCON_IGNORE: *empty_repo | ||
ros2/rmw_fastrtps/COLCON_IGNORE: *empty_repo |
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 |
---|---|---|
|
@@ -5,24 +5,19 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
rosdistro: [dashing, eloquent, master] | ||
rosdistro: [master] | ||
os: [ubuntu-18.04, macOS-latest, windows-latest] | ||
exclude: | ||
# pending https://github.com/ament/ament_cmake/pull/233 | ||
- rosdistro: eloquent | ||
os: windows-latest | ||
# pending https://github.com/ament/ament_cmake/pull/234 | ||
- rosdistro: dashing | ||
os: windows-latest | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- if: runner.os == 'Linux' | ||
# azure ubuntu repo can be flaky so add an alternate source | ||
run: sed -e 's/azure.archive.ubuntu.com/us.archive.ubuntu.com/g' -e t -e d /etc/apt/sources.list | sudo tee /etc/apt/sources.list.d/nonazure.list | ||
- name: Acquire ROS dependencies | ||
uses: ros-tooling/[email protected].17 | ||
uses: ros-tooling/[email protected].20 | ||
- name: Build and test ROS | ||
uses: ros-tooling/[email protected].15 | ||
uses: ros-tooling/[email protected].16 | ||
with: | ||
package-name: rmw_cyclonedds_cpp | ||
vcs-repo-file-url: https://raw.githubusercontent.com/ros2/ros2/${{ matrix.rosdistro }}/ros2.repos | ||
vcs-repo-file-url: > | ||
https://raw.githubusercontent.com/ros2/ros2/${{ matrix.rosdistro }}/ros2.repos | ||
https://raw.githubusercontent.com/${{github.repository}}/${{github.sha}}/.github/resources/suppress_other_rmw.repos |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
70 changes: 0 additions & 70 deletions
70
cyclonedds_cmake_module/cmake/Modules/FindCycloneDDS.cmake
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
cyclonedds_cmake_module/cyclonedds_cmake_module-extras.cmake
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
31 changes: 31 additions & 0 deletions
31
rmw_cyclonedds_cpp/cmake/get_rmw_cyclonedds_output_filter.cmake
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright 2020 Open Source Robotics Foundation, Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# | ||
# Get patterns for output filtering for CycloneDDS RMW. | ||
# | ||
# :param output_patterns: patterns that will be used to identify console | ||
# output generated by CycloneDDS. | ||
# :type output_filter: string | ||
# | ||
# @public | ||
# | ||
macro(get_rmw_cyclonedds_output_filter output_patterns) | ||
if(NOT "${ARGN}" STREQUAL "") | ||
message(FATAL_ERROR "get_rmw_cyclonedds_output_filter() called with " | ||
"unused arguments: ${ARGN}") | ||
endif() | ||
|
||
set(${output_patterns} ".*using network interface \\w+ \\(.*\\) selected arbitrarily from:.*") | ||
endmacro() |
Oops, something went wrong.