Skip to content
Snippets Groups Projects
Commit 0328ba6e authored by Sergi Hernandez's avatar Sergi Hernandez
Browse files

Add .gitlab-ci.yml

parent cc8dd518
No related branches found
No related tags found
No related merge requests found
Pipeline #
image: docker.io/evili/labrobotica
cmake-build:
stage: build
script:
- mkdir -pv Build
- cd Build
- cmake -D CMAKE_BUILD_TYPE=Debug ..
- make
artifacts:
paths:
- Build/
unit-test:
stage: test
script:
- cd Build
- ctest --timeout 15 --verbose -T test
- ctest --timeout 15 --verbose -T memcheck
artifacts:
paths:
- Build/
coverage:
stage: deploy
script:
- cd Build
- ctest --timeout 15 --verbose -T coverage
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment