-
Notifications
You must be signed in to change notification settings - Fork 7
/
.gitlab-ci.yml
126 lines (102 loc) · 1.93 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
before_script:
- dnf install -y git gcc gcc-c++ make findutils diffutils gawk || (apt-get update && apt-get install -y git gcc g++ make findutils gawk)
- git submodule update --init --recursive
test:
script:
- make test
- make debug-test
- make opt-test
- make release-test
make_only:
script:
- make
- make opt
- make release
- make debug
statistics:
script:
- make opt-test | grep "Duration per record"
install:fedora:
image: fedora:latest
script:
- make PREFIX=/tmp/recorder/ install
install-opt:fedora:
image: fedora:latest
script:
- make PREFIX=/tmp/recorder-opt/ install-opt
install-debug:fedora:
image: fedora:latest
script:
- make PREFIX=/tmp/recorder-debug/ install-debug
install-release:fedora:
image: fedora:latest
script:
- make PREFIX=/tmp/recorder-release/ install-release
test:fedora:
image: fedora:latest
script:
- make test
test-opt:fedora:
image: fedora:latest
script:
- make test-opt
test-release:fedora:
image: fedora:latest
script:
- make test-release
test-debug:fedora:
image: fedora:latest
script:
- make test-debug
build:fedora:
image: fedora:latest
script:
- make
build-opt:fedora:
image: fedora:latest
script:
- make opt
build-debug:fedora:
image: fedora:latest
script:
- make opt-debug
build-release:fedora:
image: fedora:latest
script:
- make opt-release
test:fedora28:
image: fedora:28
script:
- make test
test:fedora29:
image: fedora:29
script:
- make test
test:fedora30:
image: fedora:30
script:
- make test
test:fedora31:
image: fedora:31
script:
- make test
test:fedora32:
image: fedora:32
script:
- make test
test:ubuntu:
image: ubuntu:latest
script:
- make test
test-opt:ubuntu:
image: ubuntu:latest
script:
- make test-opt
test-release:ubuntu:
image: ubuntu:latest
script:
- make test-release
test-debug:ubuntu:
image: ubuntu:latest
script:
- make test-debug