-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (39 loc) · 1.51 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
dist: bionic
language:
- cpp
- python
python:
- "2.7"
compiler:
- gcc
before_install: # Use this to prepare the system to install prerequisites or dependencies
# Define some config vars
- export ROS_DISTRO=melodic
- export CI_SOURCE_PATH=$(pwd)
- echo "Testing branch $TRAVIS_BRANCH "
- pwd
- sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list'
- sudo apt-key adv --keyserver 'hkp://keyserver.ubuntu.com:80' --recv-key C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654
- sudo apt-get update
- sudo apt-get install ros-$ROS_DISTRO-desktop
- sudo apt install python-rosdep
- sudo rosdep init
- rosdep update
install: # Use this to install any prerequisites or dependencies necessary to run your build
# Create workspace
- mkdir -p ~/carla-ros-bridge/catkin_ws/src
- cd ~/carla-ros-bridge
- git clone https://github.com/carla-simulator/ros-bridge.git
- cd ros-bridge
- git submodule update --init
- cd ../catkin_ws/src
- ln -s ../../ros-bridge
- cd ..
- rosdep update
- rosdep install --from-paths src --ignore-src -r
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.
# TEST 1 -------------------------------------------
- echo "Test 1 ========================================"
- catkin_make DCMAKE_BUILD_TYPE=Debug