Update .gitlab-ci.yml file

This commit is contained in:
Ian Roddis
2021-08-23 20:07:00 +00:00
parent be20bb5665
commit 574f6c1fb1

18
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,18 @@
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