diff options
| -rw-r--r-- | .gitlab-ci.yml | 7 | ||||
| -rw-r--r-- | Makefile | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3bfe621..45f1b57 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,7 @@ test: stage: test - script: - - make + script: make ci + artifacts: + reports: + junit: + - ./junit/*.xml @@ -3,6 +3,10 @@ CC=gcc test : main cgreen-runner -c main +ci : main + mkdir -p junit + cgreen-runner -c --xml=junit/ main + run : main ./main |
