Skip to content

Commit 20787cd

Browse files
authored
Merge pull request ROBOTIS-GIT#480 from ROBOTIS-GIT/develop
Develop
2 parents 6ae113a + da1438e commit 20787cd

32 files changed

+1778
-540
lines changed

.github/workflows/ros-ci.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: ros-ci
2+
3+
# Controls when the action will run. Triggers the workflow on push or pull request
4+
on:
5+
push:
6+
branches: [ master, develop ]
7+
pull_request:
8+
branches: [ master, develop ]
9+
10+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
11+
jobs:
12+
master-ci:
13+
runs-on: ubuntu-latest
14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
ros_distribution:
18+
- kinetic
19+
- melodic
20+
- noetic
21+
include:
22+
# Kinetic Kame (May 2016 - May 2021)
23+
- docker_image: ubuntu:xenial
24+
ros_distribution: kinetic
25+
ros_version: 1
26+
# Melodic Morenia (May 2018 - May 2023)
27+
- docker_image: ubuntu:bionic
28+
ros_distribution: melodic
29+
ros_version: 1
30+
# Noetic Ninjemys (May 2020 - May 2025)
31+
- docker_image: ubuntu:focal
32+
ros_distribution: noetic
33+
ros_version: 1
34+
container:
35+
image: ${{ matrix.docker_image }}
36+
steps:
37+
- name: Setup directories
38+
run: mkdir -p ros_ws/src
39+
- name: checkout
40+
uses: actions/checkout@v2
41+
with:
42+
path: ros_ws/src
43+
- name: Setup ROS environment
44+
uses: ros-tooling/[email protected]
45+
with:
46+
required-ros-distributions: ${{ matrix.ros_distribution }}
47+
- name: Build and Test
48+
uses: ros-tooling/[email protected]
49+
with:
50+
package-name: dynamixel_sdk
51+
target-ros1-distro: ${{ matrix.ros_distribution }}
52+
vcs-repo-file-url: ""

.travis.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

ReleaseNote.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Dynamixel SDK Release Notes
22

3+
3.7.42(2021-04-14)
4+
-------------------
5+
* Update Matlab, Python, Labview examples
6+
* Add Sync / Bulk read write ROS examples
7+
* Contributors: JaehyunShim, David Park, Ashe Kim, Will Son
8+
39
3.7.41(2020-08-12)
410
-------------------
511
* DYNAMIXEL SDK ROS example initial commit.

0 commit comments

Comments
 (0)