forked from lsds/KungFu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
100 lines (78 loc) · 1.81 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# https://docs.gitlab.com/ce/ci/yaml/README.html
stages:
- test
- lint
unit test:
stage: test
image: registry.gitlab.com/lsds-kungfu/image/builder:ubuntu18
script:
- | # C++ test
./configure --build-tests
make
make test
- | # Go test
./scripts/tests/run-go-tests.sh
integration test:
stage: test
image: registry.gitlab.com/lsds-kungfu/image/builder:ubuntu18
script:
- |
./configure --build-tests
make
- |
./scripts/tests/run-integration-tests.sh
python3 test:
stage: test
image: registry.gitlab.com/lsds-kungfu/image/builder:ubuntu18
before_script:
- |
DATA_DIR=$HOME/var/data \
./scripts/download-mnist.sh
script:
- cmake --version
- pip3 install -vvv -U .
- ./scripts/tests/run-op-tests.sh
- ./scripts/tests/run-train-tests.sh
go format test:
stage: lint
image: alpine:3.9
before_script:
- apk update
- apk add git go
script:
- gofmt -w .
- git diff --exit-code
python format test:
stage: lint
image: alpine:3.9
before_script:
- apk update
- apk add git python3
- pip3 install -U -r tests/lint.requirements.txt
script:
- ./scripts/clean-code.sh --fmt-py
- git diff --exit-code
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
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