From 930e73d01b4fa506e5cdc0ec5967573a3f2d452c Mon Sep 17 00:00:00 2001 From: Will Son Date: Fri, 16 Apr 2021 17:28:14 +0900 Subject: [PATCH] release 1.1.2 --- .github/workflows/ros-ci.yml | 52 ++++++++++++++++++++++++++++++++++++ .travis.yml | 39 --------------------------- CHANGELOG.rst | 4 +-- 3 files changed, 54 insertions(+), 41 deletions(-) create mode 100644 .github/workflows/ros-ci.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/ros-ci.yml b/.github/workflows/ros-ci.yml new file mode 100644 index 0000000..e7a05b6 --- /dev/null +++ b/.github/workflows/ros-ci.yml @@ -0,0 +1,52 @@ +name: ros-ci + +# Controls when the action will run. Triggers the workflow on push or pull request +on: + push: + branches: [ develop ] + pull_request: + branches: [ develop ] + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + develop-ci: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + ros_distribution: + # - kinetic + # - melodic + - noetic + include: + # Kinetic Kame (May 2016 - May 2021) + # - docker_image: ubuntu:xenial + # ros_distribution: kinetic + # ros_version: 1 + # Melodic Morenia (May 2018 - May 2023) + # - docker_image: ubuntu:bionic + # ros_distribution: melodic + # ros_version: 1 + # Noetic Ninjemys (May 2020 - May 2025) + - docker_image: ubuntu:focal + ros_distribution: noetic + ros_version: 1 + container: + image: ${{ matrix.docker_image }} + steps: + - name: Setup directories + run: mkdir -p ros_ws/src + - name: checkout + uses: actions/checkout@v2 + with: + path: ros_ws/src + - name: Setup ROS environment + uses: ros-tooling/setup-ros@0.1.2 + with: + required-ros-distributions: ${{ matrix.ros_distribution }} + - name: Build and Test + uses: ros-tooling/action-ros-ci@v0.2 + with: + package-name: hls_lfcd_lds_driver + target-ros1-distro: ${{ matrix.ros_distribution }} + vcs-repo-file-url: "" diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index b2b7b5e..0000000 --- a/.travis.yml +++ /dev/null @@ -1,39 +0,0 @@ -# This config file for Travis CI utilizes ros-industrial/industrial_ci package. -# For more info for the package, see https://github.com/ros-industrial/industrial_ci/blob/master/README.rst - -sudo: required -dist: trusty -services: - - docker -language: generic -python: - - "2.7" -compiler: - - gcc -notifications: - email: - on_success: change - on_failure: always - recipients: - - willson@robotis.com -env: - matrix: - - ROS_DISTRO=kinetic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=debian OS_NAME=ubuntu OS_CODE_NAME=xenial - - ROS_DISTRO=melodic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=debian OS_NAME=ubuntu OS_CODE_NAME=bionic - - ROS_DISTRO=melodic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=debian OS_NAME=debian OS_CODE_NAME=stretch - - ROS_DISTRO=noetic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=debian OS_NAME=ubuntu OS_CODE_NAME=focal -matrix: - allow_failures: - - env: ROS_DISTRO=melodic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=debian OS_NAME=debian OS_CODE_NAME=stretch -branches: - only: - - master - - develop - - kinetic-devel - - melodic-devel - - noetic-devel -install: - - git clone https://github.com/ros-industrial/industrial_ci.git .ci_config -script: - - source .ci_config/travis.sh - diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8d6ff44..017b6c4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,9 +2,9 @@ Changelog for package hls_lfcd_lds_driver ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -1.1.2 (2020-09-08) +1.1.2 (2021-04-16) ------------------ -* fixed time_increment, scan_time in LaserScan msg +* fix LDS data issue * Contributors: Will Son 1.1.1 (2020-07-13)