-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy path.gitlab-ci.yml
66 lines (54 loc) · 1.8 KB
/
.gitlab-ci.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
before_script:
# Install ssh-agent if not already installed, it is required by Docker.
# (change apt-get to yum if you use a CentOS-based image)
- 'apt-get -qq update -y && apt-get -qq install build-essential openssh-client sudo -y --no-install-recommends'
# Run ssh-agent (inside the build environment)
- eval $(ssh-agent -s)
# Add the SSH key stored in SSH_PRIVATE_KEY variable to the agent store
- ssh-add <(echo "$SSH_PRIVATE_KEY")
# For Docker builds disable host key checking. Be aware that by adding that
# you are suspectible to man-in-the-middle attacks.
# WARNING: Use this only with the Docker executor, if you use it with shell
# you will overwrite your user's SSH config.
- mkdir -p ~/.ssh
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
# Here we are at /build/$CI_PROJECT_NAME
# For pure catkin projects, we need a workspace:
- mkdir -p /build/ws/src/
- cd /build/ws
- ln -s $CI_PROJECT_DIR src/$CI_PROJECT_NAME
- cd src
- git clone [email protected]:libs/cslibs_path_planning
- git clone [email protected]:libs/cslibs_navigation_utilities
# install optional dependencies
- git clone https://github.com/sbpl/sbpl
- cd ..
- rosdep update
- apt-get install -y $(rosdep install --from-paths -i -y -q -r -s src | grep 'apt-get install' | rev | cut -f1 -d' ' | rev | paste -s)
stages:
- build
indigo:
stage: build
image: ros:indigo
script:
- catkin_make_isolated
jade:
stage: build
image: ros:jade
script:
- catkin_make_isolated
kinetic:
stage: build
image: ros:kinetic
script:
- catkin_make_isolated
lunar:
stage: build
image: ros:lunar
script:
- catkin_make_isolated
melodic:
stage: build
image: ros:melodic
script:
- catkin_make_isolated