Skip to content

Commit 77e569a

Browse files
committed
Merge branch 'v3.0-devel' of https://github.com/ethz-adrl/ct into v3.0-devel
2 parents da650a2 + c0c4921 commit 77e569a

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

.travis.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# This config file for Travis CI utilizes ros-industrial/industrial_ci package.
2+
# For more info for the package, see https://github.com/ros-industrial/industrial_ci/blob/master/README.rst
3+
sudo: required
4+
dist: xenial
5+
services:
6+
- docker
7+
language: c++
8+
compiler:
9+
- clang
10+
cache:
11+
directories:
12+
- $HOME/.ccache
13+
notifications:
14+
email:
15+
recipients:
16+
- markusgft@gmail.com
17+
env:
18+
global:
19+
- CCACHE_DIR=$HOME/.ccache # enables C/C++ caching
20+
matrix:
21+
- ROS_DISTRO="kinetic"
22+
#- ROS_DISTRO="melodic"
23+
matrix:
24+
allow_failures:
25+
- env: ROS_DISTRO="kinetic" PRERELEASE=true
26+
before_install:
27+
- sudo apt-get update
28+
- sudo apt-get install liblapack-dev
29+
install:
30+
- git clone https://github.com/ros-industrial/industrial_ci.git .ci_config
31+
script:
32+
- source .ci_config/travis.sh
33+
# - source ./travis.sh # Enable this when you have a package-local script

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# Control Toolbox
22

33
This is the Control Toolbox, an efficient C++ library for control, estimation, optimization and motion planning in robotics.
4-
54
Please find the documentation [here](https://adrlab.bitbucket.io/ct)
65

6+
# Earlier Versions
7+
8+
Earlier versions up to v2.3 are hosted on bitbucket, they can be found at https://bitbucket.org/adrlab/ct/wiki/Home
79

810
# Licence Information
911

0 commit comments

Comments
 (0)