added first .gitlab-ci.yml

This commit is contained in:
Marcel Otte 2016-03-27 20:26:54 +02:00
parent 26a6efe57c
commit e4f46235f3
1 changed files with 14 additions and 0 deletions

14
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,14 @@
image: gcc:latest
stages:
- build
- test
build-c:
stage: build
script:
- cd c; make
test-c:
stage: test
script:
- cd c; make test