https://github.com/ros-controls/ros_control
Revision 82c926c5e944341743b87f578bedb5b9e27caf3c authored by Matt Reynolds on 09 May 2020, 16:19:17 UTC, committed by GitHub on 09 May 2020, 16:19:17 UTC
1 parent 955c5e7
Raw File
Tip revision: 82c926c5e944341743b87f578bedb5b9e27caf3c authored by Matt Reynolds on 09 May 2020, 16:19:17 UTC
Use setuptools instead of distutils (#429)
Tip revision: 82c926c
.travis.yml
# Travis Continuous Integration Configuration File For ROS Control Projects
# Author: Dave Coleman
language: generic
services:
  - docker

notifications:
  email:
    recipients:
      - bence.magyar.robotics@gmail.com
    on_success: change #[always|never|change] # default: change
    on_failure: change #[always|never|change] # default: always

env:
  global:
    - UPSTREAM_WORKSPACE='ros_control.rosinstall -ros_control'
  matrix:
#    - ROS_DISTRO=noetic ROS_REPO=ros
    - ROS_DISTRO=noetic ROS_REPO=ros-testing

install:
  - git clone --quiet --depth 1 https://github.com/ros-industrial/industrial_ci.git .industrial_ci -b master
script:
  - .industrial_ci/travis.sh
back to top