Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 088b133

Browse files
author
Davide Faconti
committed
fix travis removing CI
1 parent 8703875 commit 088b133

File tree

1 file changed

+3
-18
lines changed

1 file changed

+3
-18
lines changed

.travis.yml

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,9 @@ os:
1111
compiler:
1212
- gcc
1313

14-
matrix:
15-
include:
16-
- bare_linux:
17-
env: ROS_DISTRO="none"
18-
- ros_indigo:
19-
env: ROS_DISTRO="indigo"
20-
- ros_kinetic:
21-
env: ROS_DISTRO="kinetic"
22-
- ros_melodic:
23-
env: ROS_DISTRO="melodic"
24-
fast_finish: false
25-
2614
before_install:
2715
- sudo apt-get update && sudo apt-get --reinstall install -qq build-essential
28-
- if [ "$ROS_DISTRO" = "none" ]; then sudo apt-get --reinstall install -qq libzmq3-dev; fi
16+
- sudo apt-get --reinstall install -qq libzmq3-dev
2917
# GTest: see motivation here https://www.eriksmistad.no/getting-started-with-google-test-on-ubuntu/
3018
- sudo apt-get --reinstall install -qq libgtest-dev cmake
3119
- cd /usr/src/gtest
@@ -34,15 +22,12 @@ before_install:
3422
- sudo cp *.a /usr/lib
3523
- cd $TRAVIS_BUILD_DIR
3624

37-
install:
38-
- if [ "$ROS_DISTRO" != "none" ]; then git clone https://github.com/ros-industrial/industrial_ci.git .ci_config; fi
39-
4025
before_script:
4126
# Prepare build directory
4227
- mkdir -p build
4328

4429
script:
45-
- if [ "$ROS_DISTRO" = "none" ]; then (cd build; cmake .. ; sudo cmake --build . --target install; ./bin/behaviortree_cpp_test); fi
46-
- if [ "$ROS_DISTRO" != "none" ]; then (.ci_config/travis.sh); fi
30+
- cd build; cmake .. ; sudo cmake --build . --target install; ./bin/behaviortree_cpp_test
31+
4732

4833

0 commit comments

Comments
 (0)