-
Simon Wittl authoredSimon Wittl authored
.gitlab-ci.yml 1.52 KiB
stages:
- test
- build
- docu
rq-pytests:
stage: test
image: ros:humble
before_script:
- git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@mygit.th-deg.de/roboct/robo_quality/rq_interfaces
- git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@mygit.th-deg.de/roboct/robo_quality/rq_hardware
- git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@mygit.th-deg.de/roboct/robo_quality/rq_controller
- git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@mygit.th-deg.de/roboct/robo_quality/rq_ddetection
- git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@mygit.th-deg.de/roboct/robo_quality/rq_trajectory
- git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@mygit.th-deg.de/roboct/robo_quality/rq_reconstruction
- rosdep install --from-paths . -y --ignore-src
- colcon build --merge-install
- apt update
- apt install wget
- wget https://bootstrap.pypa.io/get-pip.py
- python3 ./get-pip.py
- pip3 install pytest pytest-cov netCDF4 ros2-numpy
script:
- source ./install/setup.bash
- cd rq_controller
- python3 -m pytest ./rq_controller/test/
- cd ..
build-ros:
stage: build
needs: [rq-pytests]
script:
- source ./install/setup.bash
artifacts:
when: always
paths:
- install
create-docu:
stage: docu
needs: [rq-pytests]
before_script:
- pip3 install pdoc3
script:
- source ./install/setup.bash
- mkdir doc
- python3 -m pdoc3 --html rq_controller -o=./doc/rq_controller -c show_source_code=True
artifacts:
when: always
paths:
- doc