Skip to content
Snippets Groups Projects

CI: first step towards using GitLab CI in EDDIE

Merged Stefan Schmidt requested to merge (removed):ci into main
.gitlab-ci.yml 0 → 100644
+ 15
0
default:
interruptible: true
stages:
- build
image: gcc
build:
stage: build
before_script:
- apt update && apt -y install make cmake libcoap3-dev
script:
- mkdir build && cd build
- cmake .. && make
Loading