-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
31 lines (22 loc) · 971 Bytes
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
image: registry.gitlab.com/harag/sbcl-docker-gitlab-ci
stages:
- test
before_script:
- cd ~/src
- git clone https://gitlab-ci-token:[email protected]/Harag/cl-getx.git
- git clone https://gitlab-ci-token:[email protected]/naive-x/cl-naive-sb-cover-ext.git
- git clone https://gitlab-ci-token:[email protected]/naive-x/cl-naive-ptrees.git
- git clone https://gitlab-ci-token:[email protected]/naive-x/cl-naive-deprecation.git
- git clone https://gitlab-ci-token:[email protected]/naive-x/cl-naive-tests.git
test:
stage: test
script:
- make -C $CI_PROJECT_DIR coverage COVERAGE-TYPE=SHORT DEPENDENCYDIR=~/src/ ARTDIR=$CI_PROJECT_DIR/
- cat $CI_PROJECT_DIR/tests/coverage/coverage-summary.txt
artifacts:
reports:
junit: junit-results.xml
coverage_report:
coverage_format: cobertura
path: tests/coverage/coverage.xml
coverage: /expression-rate:+\s(\d+.?\d+)%/