-
Notifications
You must be signed in to change notification settings - Fork 18
/
.gitlab-ci.yml
83 lines (76 loc) · 1.66 KB
/
.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
image:
name: swedishembedded/build:v0.26.4-1
default:
tags:
- docker
cache:
key: $CI_COMMIT_REF_SLUG
stages:
- build
- unit_tests
- integration_tests
- system_tests
# This job runs all code checks, unit and integration tests
integrity:
stage: build
artifacts:
paths:
- report.html
- log.html
expire_in: 1 week
when: always
script:
- ./scripts/init
- ./scripts/check
- pre-commit run --all-files
# This job builds applications
documentation:
stage: build
artifacts:
paths:
- build-doc/**/*.pdf
expire_in: 1 week
when: always
script:
# for docs. Move to docker image.
- apt-get update && apt-get install -qy tex-gyre
- ./scripts/init
- ./scripts/build-doc --sdk-only
applications:
stage: build
artifacts:
paths:
- build-apps/**/zephyr.elf
- build-release/**/release/
- release/*
expire_in: 1 week
when: always
reports:
coverage_report:
coverage_format: cobertura
path: build-tests/coverage.xml
junit:
# Report from unit and integration testing
- build-tests/twister_report.xml
script:
- ./scripts/init
- ./scripts/build
# This job runs all system tests on built applications
test:
stage: unit_tests
coverage: /^\s*lines:\s*\d+.\d+\%/
artifacts:
paths:
- build-tests/coverage*
expire_in: 1 week
when: always
reports:
coverage_report:
coverage_format: cobertura
path: build-tests/coverage.xml
junit:
# Report from unit and integration testing
- build-tests/twister_report.xml
script:
- ./scripts/init
- ./scripts/test