DynuIPRefresher/.gitlab-ci.yml

21 lines
319 B
YAML

image: luki42/dynuiprefresher_build:latest
stages:
- build
build:
stage: build
script:
- cmake -S . -B build
- cd build
- make
- make package
- make test
- make build-xml
artifacts:
paths:
- "build/bin/*"
- "build/packages/*"
reports:
junit: build/report.xml