DynuIPRefresher/.gitlab-ci.yml
2020-04-30 15:15:01 +02:00

17 lines
239 B
YAML

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