CI(pico-sensor): added dockerfile to build pico-sensor image + created ci pipeline with build jobs

This commit is contained in:
SylvanArnold
2025-05-26 20:03:30 +02:00
parent d8f4b9f918
commit 23f11a3b87
6 changed files with 302 additions and 8 deletions

View File

@@ -0,0 +1,22 @@
stages:
- build
build_release:
stage: build
image: registry.forge.hefr.ch/team-raclette/project-softweng/pico-sensor:latest
script:
- cmake --preset Release
- cmake --build --preset app-release
artifacts:
paths:
- build/Release/
build_test:
stage: build
image: registry.forge.hefr.ch/team-raclette/project-softweng/pico-sensor:latest
script:
- cmake --preset Test
- cmake --build --preset app-Test
artifacts:
paths:
- build/Test/