20 lines
195 B
YAML
20 lines
195 B
YAML
image: gcc
|
|
|
|
stages:
|
|
- build
|
|
- test
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- make
|
|
artifacts:
|
|
paths:
|
|
- main
|
|
stage: test
|
|
|
|
unit-testing:
|
|
stage: test
|
|
script:
|
|
- make unit-tests
|