File tree Expand file tree Collapse file tree 1 file changed +3
-18
lines changed Expand file tree Collapse file tree 1 file changed +3
-18
lines changed Original file line number Diff line number Diff line change 11
11
compiler :
12
12
- gcc
13
13
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
-
26
14
before_install :
27
15
- 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
29
17
# GTest: see motivation here https://www.eriksmistad.no/getting-started-with-google-test-on-ubuntu/
30
18
- sudo apt-get --reinstall install -qq libgtest-dev cmake
31
19
- cd /usr/src/gtest
@@ -34,15 +22,12 @@ before_install:
34
22
- sudo cp *.a /usr/lib
35
23
- cd $TRAVIS_BUILD_DIR
36
24
37
- install :
38
- - if [ "$ROS_DISTRO" != "none" ]; then git clone https://github.com/ros-industrial/industrial_ci.git .ci_config; fi
39
-
40
25
before_script :
41
26
# Prepare build directory
42
27
- mkdir -p build
43
28
44
29
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
+
47
32
48
33
You can’t perform that action at this time.
0 commit comments