-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
661105f
commit 0e519ec
Showing
2 changed files
with
41 additions
and
0 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 |
---|---|---|
|
@@ -12,6 +12,7 @@ jobs: | |
ros_distribution: | ||
- foxy | ||
- humble | ||
- rolling | ||
include: | ||
# Foxy Fitzroy (June 2020 - May 2023) | ||
- os: ubuntu-20.04 | ||
|
@@ -23,8 +24,14 @@ jobs: | |
test_target_framework: net6.0 | ||
ros_distribution: humble | ||
ros_version: 2 | ||
# Rolling Ridley (June 2020 - Present) | ||
- os: ubuntu-22.04 | ||
test_target_framework: net6.0 | ||
ros_distribution: rolling | ||
ros_version: 2 | ||
|
||
runs-on: ${{ matrix.os }} | ||
continue-on-error: ${{ matrix.ros_distribution == 'rolling' }} | ||
env: | ||
RCLDOTNET_TEST_TARGET_FRAMEWORK: ${{ matrix.test_target_framework }} | ||
|
||
|
@@ -46,6 +53,7 @@ jobs: | |
uses: ros-tooling/[email protected] | ||
with: | ||
required-ros-distributions: ${{ matrix.ros_distribution }} | ||
use-ros2-testing: ${{ matrix.ros_distribution == 'rolling' }} | ||
|
||
- name: Configure ros2_dotnet workspace | ||
run: | | ||
|
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,33 @@ | ||
repositories: | ||
ament_dotnet/ament_cmake_export_assemblies: | ||
type: git | ||
url: https://github.com/ros2-dotnet/ament_cmake_export_assemblies.git | ||
version: main | ||
ros2/common_interfaces: | ||
type: git | ||
url: https://github.com/ros2/common_interfaces.git | ||
version: rolling | ||
ros2/rcl_interfaces: | ||
type: git | ||
url: https://github.com/ros2/rcl_interfaces.git | ||
version: rolling | ||
ros2/rosidl_defaults: | ||
type: git | ||
url: https://github.com/ros2/rosidl_defaults.git | ||
version: rolling | ||
ros2/test_interface_files: | ||
type: git | ||
url: https://github.com/ros2/test_interface_files.git | ||
version: rolling | ||
ros2/unique_identifier_msgs: | ||
type: git | ||
url: https://github.com/ros2/unique_identifier_msgs.git | ||
version: rolling | ||
ros2_dotnet/dotnet_cmake_module: | ||
type: git | ||
url: https://github.com/ros2-dotnet/dotnet_cmake_module.git | ||
version: main | ||
ros2_dotnet/ros2_dotnet: | ||
type: git | ||
url: https://github.com/ros2-dotnet/ros2_dotnet.git | ||
version: main |