Add .gitlab-ci.yml

This commit is contained in:
Grzegorz Kowal 2019-10-04 20:05:13 +00:00
parent f36979d74a
commit c8bfe39ad5

12
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,12 @@
image: debian
stages:
- build
build:
stage: build
script: cd ./build/ && cp -al make.default make.config && cp -al ./hosts/default ./hosts/$HOSTNAME && cd ../ && make -C ./build > build.log
artifacts:
paths:
- build.log
expire_in: 20 minutes