20 lines
247 B
YAML
20 lines
247 B
YAML
image: gcc
|
|
|
|
stages:
|
|
- build
|
|
- test
|
|
|
|
build-job:
|
|
stage: build
|
|
script:
|
|
- mkdir build
|
|
- cd build
|
|
- cmake ..
|
|
- make
|
|
|
|
unit-test-job:
|
|
stage: test
|
|
script:
|
|
- echo "Running unit tests"
|
|
- cd build
|
|
- tests/tests |