-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
192 lines (162 loc) · 4.16 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
before_script:
- export DISTRO_CODENAME=`lsb_release -cs` && echo Using distro $DISTRO_CODENAME
- export DEBIAN_FRONTEND=noninteractive
- echo "deb http://apt.roboception.de/stable $DISTRO_CODENAME main" > /etc/apt/sources.list.d/roboception-stable.list
- if [ "$TESTING_DEBS" = "true" ]; then echo "deb http://apt.roboception.de/testing $DISTRO_CODENAME main" > /etc/apt/sources.list.d/roboception-testing.list ; fi
- curl http://apt.roboception.de/archive.key | apt-key add -
- apt-get update -yq && apt-get install -y cvkit rc-genicam-api libglew-dev
variables:
GET_SOURCES_ATTEMPTS: 3
#########################
# Templates using anchors
#########################
.amd64_bionic_t: &amd64_bionic_job
image: registry.roboception.de/tools/docker_images:bionic-buildimage
tags:
- amd64
- docker
.amd64_focal_t: &amd64_focal_job
image: registry.roboception.de/tools/docker_images:focal-buildimage
tags:
- amd64
- docker
.amd64_jammy_t: &amd64_jammy_job
image: registry.roboception.de/tools/docker_images:jammy-buildimage
tags:
- amd64
- docker
#############
# Templates
#############
.test:
stage: test
script:
- mkdir build && cd build
- cmake ..
- make -j 4
- CTEST_OUTPUT_ON_FAILURE=1 make test
# run test script with latest debs from testing installed
.test_latest:
extends: .test
variables:
TESTING_DEBS: "true"
# run test script with released debs from stable installed (allowed to fail)
.test_stable:
extends: .test
allow_failure: true
except:
- /^v[0-9]+\.[0-9]+\.[0-9]+/
# run test script with released debs from stable (only for releases, mustn't fail)
.test_release:
extends: .test
only:
- /^v[0-9]+\.[0-9]+\.[0-9]+/
except:
- branches
# Debian packaging
.package:
stage: deploy
script:
- mkdir build && cd build
- cmake ..
- make -j 4
- make package
- if [ -z "$APT_REPO" ]; then export APT_REPO=testing; fi
- upload_deb.sh $DISTRO_CODENAME-$APT_REPO *.deb
.package_testing:
extends: .package
only:
- master
except:
- tags
variables:
TESTING_DEBS: "true"
APT_REPO: "testing"
.package_stable:
extends: .package
only:
- /^v[0-9]+\.[0-9]+\.[0-9]+/
except:
- branches
variables:
APT_REPO: "stable"
##############
#### Jobs ####
##############
gen_dox:
<<: *amd64_focal_job
variables:
TESTING_DEBS: "true"
stage: deploy
script:
- apt-get install -y doxygen ncftp
- mkdir build && cd build
- cmake ..
- make doc
- upload_dox.sh doc/html
only:
- master
- tags
tags:
- docs
################
# Testing builds
################
# Test against latest (on every commit)
#######################################
test:bionic:amd64:
<<: *amd64_bionic_job
extends: .test_latest
test:focal:amd64:
<<: *amd64_focal_job
extends: .test_latest
test:jammy:amd64:
<<: *amd64_jammy_job
extends: .test_latest
# Test against stable (is allowed to fail)
##########################################
test_stable:bionic:amd64:
<<: *amd64_bionic_job
extends: .test_stable
test_stable:focal:amd64:
<<: *amd64_focal_job
extends: .test_stable
test_stable:jammy:amd64:
<<: *amd64_jammy_job
extends: .test_stable
# Deploy testing (only on master)
#################################
package_testing:bionic:amd64:
<<: *amd64_bionic_job
extends: .package_testing
package_testing:focal:amd64:
<<: *amd64_focal_job
extends: .package_testing
package_testing:jammy:amd64:
<<: *amd64_jammy_job
extends: .package_testing
################
# Stable builds
################
# Test against stable if it is a release
########################################
test_release:bionic:amd64:
<<: *amd64_bionic_job
extends: .test_release
test_release:focal:amd64:
<<: *amd64_focal_job
extends: .test_release
test_release:jammy:amd64:
<<: *amd64_jammy_job
extends: .test_release
# Deploy stable (only for releases, version tags)
#################################################
package_stable:bionic:amd64:
<<: *amd64_bionic_job
extends: .package_stable
package_stable:focal:amd64:
<<: *amd64_focal_job
extends: .package_stable
package_stable:jammy:amd64:
<<: *amd64_jammy_job
extends: .package_stable