-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathwercker.yml
More file actions
27 lines (25 loc) · 731 Bytes
/
wercker.yml
File metadata and controls
27 lines (25 loc) · 731 Bytes
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
box: osrf/ros:kinetic-desktop-full
build:
steps:
- script:
name: initialize git submodules
code: |
git submodule update --init --recursive
- script:
name: install dependencies
code: |
sudo apt-get update
rosdep update
rosdep install --from-paths . --ignore-src -y -r --as-root apt:false
- script:
name: build
code: |
cd ..
mkdir -p catkin_ws/src
mv source catkin_ws/src/
cd catkin_ws/src
git clone https://github.com/catkin/catkin_simple.git
catkin_init_workspace
cd ..
export ROS_PARALLEL_JOBS='-j4 -l4' # Limit parallel jobs
catkin_make_isolated -DCMAKE_BUILD_TYPE=Release