-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
29 lines (25 loc) · 825 Bytes
/
.gitlab-ci.yml
File metadata and controls
29 lines (25 loc) · 825 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
27
28
29
build:
stage: build
script:
- source /opt/ros/melodic/setup.bash
- mkdir -p ros_ws/src
- cd ros_ws/src
- git clone git@spgit.informatik.uni-ulm.de:quadrocopter/quad_common_utils.git
- git clone git@spgit.informatik.uni-ulm.de:quadrocopter/hector_quadrotor.git
- git clone https://github.com/sp-uulm/MiniLua.git
- cd ../..
- rm -f ros_ws/src/interactive_script || true
- ln -s $(pwd) ros_ws/src/interactive_script
- cd ros_ws
- rm -rf build install log
- colcon build --packages-up-to interactive_script
- source install/local_setup.bash
artifacts:
paths:
- ros_ws/install
tests:
stage: test
script:
- source /opt/ros/melodic/setup.bash
- source ros_ws/install/local_setup.bash
- rqt --list-plugins --force-discover | grep -q interactive_script