-
Notifications
You must be signed in to change notification settings - Fork 58
/
.gitlab-ci.yml
83 lines (65 loc) · 1.39 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
# https://docs.gitlab.com/ce/ci/yaml/README.html
stages:
- lint
go format test:
stage: lint
image: alpine:3.9
before_script:
- apk update
- apk add git go
script:
- gofmt -w .
- git diff --exit-code
only:
changes:
- srcs/**/*.go
python format test:
stage: lint
# image: alpine:3.9
image: ubuntu:bionic
before_script:
#- apk update
#- apk add git python3
- apt update
- apt install -y git python3-pip
- pip3 install -U -r tests/requirements.lint.txt
script:
- ./scripts/clean-code.sh --fmt-py
- git diff --exit-code
only:
changes:
- srcs/**/*.py
clang format test:
stage: lint
image: registry.gitlab.com/lsds-kungfu/image/builder:ubuntu18
# TODO: use newer ubuntu image
# image: ubuntu:disco
before_script:
- apt install -y clang-format
script:
- clang-format -version
- ./scripts/clean-code.sh --fmt-cpp
- git diff --exit-code
only:
changes:
- srcs/**/*.h
- srcs/**/*.hpp
- srcs/**/*.cpp
clang tidy:
stage: lint
image: registry.gitlab.com/lsds-kungfu/image/builder:ubuntu18
# TODO: use newer ubuntu image
# image: ubuntu:disco
before_script:
- apt update
- apt install -y clang clang-format clang-tidy jq
script:
- clang-format -version
- clang-tidy -version
- ./scripts/clean-code.sh --check
# - git diff
only:
changes:
- srcs/**/*.h
- srcs/**/*.hpp
- srcs/**/*.cpp