DynuIPRefresher/.gitlab-ci.yml

17 lines
239 B
YAML
Raw Normal View History

2020-04-30 13:15:01 +00:00
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/*"