forked from cogsys-tuebingen/csapex_core_plugins
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
73 lines (60 loc) · 2.28 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
66
67
68
69
70
71
72
73
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
# clone gitlab dependencies (not available via rosdep (yet))
- git clone [email protected]:csapex/csapex csapex
- cd csapex
- git checkout $CI_BUILD_REF_NAME || true # select same branch name, if it exists. Defaults to master
- cd ..
- git clone [email protected]:libs/cslibs_vision
- git clone [email protected]:libs/cslibs_laser_processing
- git clone [email protected]:libs/cslibs_arff
- git clone [email protected]:libs/cslibs_indexed_storage.git
- cd ..
# clone rosdep depencies (this should ideally get ALL dependencies)
- source /opt/ros/$(ls /opt/ros/ | sort -r | head -n 1)/setup.bash
- apt-get install -y $(rosdep install --from-paths -i -y -s src | grep 'apt-get install' | rev | cut -f1 -d' ' | rev | paste -s)
stages:
- build
indigo:
stage: build
image: ros:indigo-perception
script:
- catkin_make_isolated
jade:
stage: build
image: ros:jade-perception
script:
- catkin_make_isolated
kinetic:
stage: build
image: ros:kinetic-perception
script:
- catkin_make_isolated
lunar:
stage: build
image: ros:lunar-perception
script:
- catkin_make_isolated
melodic:
stage: build
image: ros:melodic-perception
script:
- catkin_make_isolated