added first .gitlab-ci.yml
This commit is contained in:
parent
26a6efe57c
commit
e4f46235f3
|
@ -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
|
Loading…
Reference in New Issue