15 lines
152 B
YAML
15 lines
152 B
YAML
|
image: gcc:latest
|
||
|
stages:
|
||
|
- build
|
||
|
- test
|
||
|
|
||
|
build-c:
|
||
|
stage: build
|
||
|
script:
|
||
|
- cd c; make
|
||
|
|
||
|
test-c:
|
||
|
stage: test
|
||
|
script:
|
||
|
- cd c; make test
|