-
Notifications
You must be signed in to change notification settings - Fork 529
Update .travis.yml for Kinetic #224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
efernandez
wants to merge
1
commit into
ros-controls:kinetic-devel
from
efernandez:update_travis_for_kinetic
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -1,48 +1,81 @@ | ||
| # Travis Continuous Integration Configuration File For ROS Control Projects | ||
| # Author: Dave Coleman | ||
| language: | ||
| - cpp | ||
| - python | ||
| python: | ||
| - "2.7" | ||
| # Author: Dave Coleman, Enrique Fernandez | ||
| sudo: required | ||
| dist: xenial | ||
| language: generic | ||
| compiler: | ||
| - gcc | ||
| env: | ||
| global: | ||
| - ROS_DISTRO=kinetic | ||
|
|
||
| notifications: | ||
| email: | ||
| recipients: | ||
| - [email protected] | ||
| - [email protected] | ||
| - [email protected] | ||
| - [email protected] | ||
| - [email protected] | ||
| on_success: change #[always|never|change] # default: change | ||
| on_failure: change #[always|never|change] # default: always | ||
| before_install: # Use this to prepare the system to install prerequisites or dependencies | ||
| # Define some config vars | ||
| - export ROS_DISTRO=hydro | ||
|
|
||
| before_install: | ||
| - export CI_SOURCE_PATH=$(pwd) | ||
| - export REPOSITORY_NAME=${PWD##*/} | ||
| - echo "Testing branch $TRAVIS_BRANCH of $REPOSITORY_NAME" | ||
| - sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu precise main" > /etc/apt/sources.list.d/ros-latest.list' | ||
| # Add ROS repositories | ||
| - sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -cs) main" > | ||
| /etc/apt/sources.list.d/ros-latest.list' | ||
| - wget http://packages.ros.org/ros.key -O - | sudo apt-key add - | ||
| - sudo apt-get update -qq | ||
| - sudo apt-get install -qq -y python-catkin-pkg python-rosdep python-wstool ros-$ROS_DISTRO-catkin ros-$ROS_DISTRO-ros | ||
| # Setup rosdep | ||
| - sudo rosdep init | ||
| # Install and initialize rosdep | ||
| - sudo apt-get install -qq -y python-dev | ||
| python-catkin-pkg | ||
| python-rosdep | ||
| python-wstool | ||
| ros-$ROS_DISTRO-catkin | ||
| ros-$ROS_DISTRO-ros | ||
| python-rosinstall | ||
| python-catkin-tools | ||
| python-catkin-pkg | ||
| python-rospkg | ||
| python-vcstools | ||
| - sudo `which rosdep` init | ||
| - rosdep update | ||
| install: # Use this to install any prerequisites or dependencies necessary to run your build | ||
| # Use rosdep to install dependencies | ||
| - rosdep install -y -q --from-paths ./ --rosdistro $ROS_DISTRO | ||
|
|
||
| install: | ||
| # Create workspace | ||
| - mkdir -p ~/ros/ws_ros_controls/src | ||
| - cd ~/ros/ws_ros_controls/src | ||
| - mkdir -p ~/ros/ws_$REPOSITORY_NAME | ||
| - cd ~/ros/ws_$REPOSITORY_NAME | ||
| - catkin config --init --mkdirs | ||
| - cd src | ||
| - wstool init . | ||
| # Download non-debian stuff | ||
| - wstool merge https://raw.github.com/ros-controls/ros_control/$ROS_DISTRO-devel/ros_control.rosinstall | ||
| - wstool update | ||
| # Delete the ros_control.rosinstall version of this repo and use the one of the branch we are testing | ||
| # Delete the ros_control.rosinstall version of this repo and use the one of | ||
| # the branch we are testing | ||
| - rm -rf $REPOSITORY_NAME | ||
| - ln -s $CI_SOURCE_PATH . # Link the repo we are testing to the new workspace | ||
| - cd ../ | ||
| # Link the repo we are testing to the new workspace | ||
| - ln -s $CI_SOURCE_PATH . | ||
| - cd .. | ||
| # Install dependencies for source repos | ||
| - rosdep install --from-paths src --ignore-src --rosdistro $ROS_DISTRO -y | ||
| before_script: # Use this to prepare your build for testing e.g. copy database configurations, environment variables, etc. | ||
| - source /opt/ros/$ROS_DISTRO/setup.bash | ||
| script: # All commands must exit with code 0 on success. Anything else is considered failure. | ||
| - catkin_make -j2 | ||
| - rosdep install -y -q --from-paths src --ignore-src --rosdistro $ROS_DISTRO | ||
|
|
||
| before_script: | ||
| - source /opt/ros/$ROS_DISTRO/setup.bash | ||
| - rospack profile | ||
|
|
||
| script: | ||
| - cd ~/ros/ws_$REPOSITORY_NAME | ||
| - catkin build -j8 --no-status --summary | ||
| # Run tests | ||
| # Note that we have to run only 1 test at a time to ensure that rostest | ||
| # instances don't collide | ||
| - catkin run_tests -j1 --no-status --summary | ||
| # Note that catkin run_tests always returns 0, so we use catkin_test_results | ||
| # to check for errors; see: https://github.com/catkin/catkin_tools/issues/245 | ||
| - catkin_test_results | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you sure if Ubuntu 16.04 is already available on Travis CI?
From one of the logs, it seems the job is running on 12.04 to me:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the note! Probably we are not getting (I definitely don't!) how Travis works haha.
I've found this:
https://docs.travis-ci.com/user/ci-environment/#Virtualization-environments
Perhaps we need to change the scripts to use docker on Travis and get a 1604 environment that way? If that's possible at all...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've opened a replacement option #225