autobuild: Run the none env in the samba-o3 build
[metze/samba-autobuild/.git] / .gitlab-ci.yml
1 # see https://docs.gitlab.com/ce/ci/yaml/README.html for all available options
2
3 stages:
4   - images
5   - build
6   - report
7
8 variables:
9   GIT_STRATEGY: fetch
10   GIT_DEPTH: "3"
11   # "--enable-coverage" or ""
12   SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE: ""
13   #
14   # we run autobuild.py inside a samba CI docker image located on gitlab's registry
15   # overwrite this variable if you want use your own image registry.
16   #
17   # Or better ask for access to the shared development repository, see
18   # https://wiki.samba.org/index.php/Samba_CI_on_gitlab#Getting_Access
19   #
20   SAMBA_CI_CONTAINER_REGISTRY: registry.gitlab.com/samba-team/devel/samba
21   #
22   # Set this to the contents of bootstrap/sha1sum.txt
23   # which is generated by bootstrap/template.py --render
24   #
25   SAMBA_CI_CONTAINER_TAG: 2b0275df23424240774afcd61fae8abed8663996
26   #
27   # We use the ubuntu1804 image as default as
28   # it matches what we have on sn-devel-184.
29   #
30   SAMBA_CI_CONTAINER_IMAGE: ubuntu1804
31   #
32   # The following images are available
33   # Please see the samba-o3 sections at the end of this file!
34   # We should run that for each available image
35   #
36   SAMBA_CI_CONTAINER_IMAGE_ubuntu1804: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-ubuntu1804:${SAMBA_CI_CONTAINER_TAG}
37   SAMBA_CI_CONTAINER_IMAGE_ubuntu1604: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-ubuntu1604:${SAMBA_CI_CONTAINER_TAG}
38   SAMBA_CI_CONTAINER_IMAGE_debian9: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-debian9:${SAMBA_CI_CONTAINER_TAG}
39   SAMBA_CI_CONTAINER_IMAGE_debian10: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-debian10:${SAMBA_CI_CONTAINER_TAG}
40   SAMBA_CI_CONTAINER_IMAGE_opensuse150: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-opensuse150:${SAMBA_CI_CONTAINER_TAG}
41   SAMBA_CI_CONTAINER_IMAGE_opensuse151: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-opensuse151:${SAMBA_CI_CONTAINER_TAG}
42   SAMBA_CI_CONTAINER_IMAGE_fedora29: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-fedora29:${SAMBA_CI_CONTAINER_TAG}
43   SAMBA_CI_CONTAINER_IMAGE_fedora30: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-fedora30:${SAMBA_CI_CONTAINER_TAG}
44   SAMBA_CI_CONTAINER_IMAGE_fedora31: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-fedora31:${SAMBA_CI_CONTAINER_TAG}
45   SAMBA_CI_CONTAINER_IMAGE_centos7: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-centos7:${SAMBA_CI_CONTAINER_TAG}
46   SAMBA_CI_CONTAINER_IMAGE_centos8: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-centos8:${SAMBA_CI_CONTAINER_TAG}
47
48 include:
49   # The image creation details are specified in a separate file
50   # See bootstrap/README.md for details
51   - 'bootstrap/.gitlab-ci.yml'
52
53 .shared_template:
54   variables:
55     AUTOBUILD_JOB_NAME: $CI_JOB_NAME
56   image: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-${SAMBA_CI_CONTAINER_IMAGE}:${SAMBA_CI_CONTAINER_TAG}
57   stage: build
58   tags:
59     - docker
60     - shared
61   before_script:
62     - uname -a
63     - lsb_release -a
64     - cat /etc/os-release
65     - mount
66     - df -h
67     - cat /proc/swaps
68     - free -h
69       # ld will fail if coverage enabled, force link ld to ld.bfd
70     - if [ -n "$SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE" ]; then sudo ln -sf $(which ld.bfd) $(which ld); fi
71       # See bootstrap/.gitlab-ci.yml how to generate a new image
72     - echo "SAMBA_CI_CONTAINER_REGISTRY[${SAMBA_CI_CONTAINER_REGISTRY}]"
73     - echo "SAMBA_CI_CONTAINER_TAG[${SAMBA_CI_CONTAINER_TAG}]"
74     - bootstrap/template.py --sha1sum > /tmp/sha1sum-template.txt
75     - diff -u bootstrap/sha1sum.txt /tmp/sha1sum-template.txt
76     - echo "${SAMBA_CI_CONTAINER_TAG}" > /tmp/sha1sum-tag.txt
77     - diff -u bootstrap/sha1sum.txt /tmp/sha1sum-tag.txt
78     - diff -u bootstrap/sha1sum.txt /sha1sum.txt
79   after_script:
80     - mount
81     - df -h
82     - cat /proc/swaps
83     - free -h
84   artifacts:
85     expire_in: 1 week
86     paths:
87       - "*.stdout"
88       - "*.stderr"
89       - "*.info"
90       - system-info.txt
91   retry:
92     max: 2
93     when:
94       - runner_system_failure
95       - stuck_or_timeout_failure
96   script:
97     # gitlab predefines CI_JOB_NAME for each job. The gitlab job usually matches the
98     # autobuild name, which means we can define a default template that runs most autobuild jobs
99     - echo "Running cmd script/autobuild.py $AUTOBUILD_JOB_NAME $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase"
100     - script/autobuild.py $AUTOBUILD_JOB_NAME $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE  --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
101
102 # Ensure when adding a new job below that you also add it to
103 # the dependencies for 'pages' below for the code coverage page
104 # generation.
105
106 others:
107   extends: .shared_template
108   script:
109     - script/autobuild.py ldb     $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
110     - script/autobuild.py pidl    $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
111     - script/autobuild.py replace $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
112     - script/autobuild.py talloc  $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
113     - script/autobuild.py tdb     $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
114     - script/autobuild.py tevent  $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
115
116 samba:
117   extends: .shared_template
118
119 samba-mitkrb5:
120   extends: .shared_template
121
122 samba-nopython:
123   extends: .shared_template
124
125 samba-nopython-py2:
126   extends: .shared_template
127
128 samba-xc:
129   extends: .shared_template
130
131 samba-admem:
132   extends: .shared_template
133
134 samba-ad-dc-2:
135   extends: .shared_template
136
137 samba-ad-dc-3:
138   extends: .shared_template
139
140 samba-ad-dc-4:
141   extends: .shared_template
142
143 samba-ad-dc-5:
144   extends: .shared_template
145
146 samba-ad-dc-6:
147   extends: .shared_template
148
149 samba-libs:
150   extends: .shared_template
151
152 samba-static:
153   extends: .shared_template
154
155 samba-fuzz:
156   extends: .shared_template
157
158 ctdb:
159   extends: .shared_template
160
161 samba-ctdb:
162   extends: .shared_template
163
164 samba-ad-dc-ntvfs:
165   extends: .shared_template
166
167 samba-admem-mit:
168   extends: .shared_template
169
170 samba-ad-dc-4-mitkrb5:
171   extends: .shared_template
172
173 .private_template:
174   extends: .shared_template
175   tags:
176     - docker
177     - samba-ci-private
178   only:
179     variables:
180       # These jobs are only run if the gitlab repo has private runners available.
181       # To enable private jobs, you must add the following var and value to
182       # your gitlab repo by navigating to:
183       # settings -> CI/CD -> Environment variables
184       - $SUPPORT_PRIVATE_TEST == "yes"
185
186 samba-ad-dc-backup:
187   extends: .private_template
188
189 samba-simpleserver:
190   extends: .private_template
191
192 samba-fileserver:
193   extends: .private_template
194
195 samba-ktest-heimdal:
196   extends: .private_template
197
198 samba-ad-dc-1:
199   extends: .private_template
200
201 samba-nt4:
202   extends: .private_template
203
204 samba-schemaupgrade:
205   extends: .private_template
206
207 samba-ad-dc-1-mitkrb5:
208   extends: .private_template
209
210 # 'pages' is a special job which can publish artifacts in `public` dir to gitlab pages
211 pages:
212   image: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-${SAMBA_CI_CONTAINER_IMAGE}:${SAMBA_CI_CONTAINER_TAG}
213   stage: report
214   tags:
215     - docker
216     - shared
217   dependencies:  # tell gitlab to download artifacts for these jobs
218     - others
219     - samba
220     - samba-mitkrb5
221     - samba-nopython
222     - samba-nopython-py2
223     - samba-xc
224     - samba-admem
225     - samba-ad-dc-2
226     - samba-ad-dc-3
227     - samba-ad-dc-4
228     - samba-ad-dc-5
229     - samba-ad-dc-6
230     - samba-libs
231     - samba-static
232     - samba-fuzz
233     # - ctdb  # TODO
234     - samba-ctdb
235     - samba-ad-dc-ntvfs
236     - samba-admem-mit
237     - samba-ad-dc-4-mitkrb5
238     - samba-ad-dc-backup
239     - samba-simpleserver
240     - samba-fileserver
241     - samba-ktest-heimdal
242     - samba-ad-dc-1
243     - samba-nt4
244     - samba-schemaupgrade
245     - samba-ad-dc-1-mitkrb5
246   script:
247     - ./configure.developer
248     - make -j
249     - lcov $(ls *.info | xargs -I{} echo -n "-a {} ") -o all.info
250     - genhtml all.info --output-directory public --prefix=$(pwd) --title "coverage report for $CI_COMMIT_REF_NAME $CI_COMMIT_SHORT_SHA"
251   artifacts:
252     expire_in: 30 days
253     paths:
254       - public
255   only:
256     variables:
257       - $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE == "--enable-coverage"
258
259 #
260 # We build samba-o3 on all supported distributions
261 #
262
263 .samba-o3-template:
264   extends: .shared_template
265   variables:
266     AUTOBUILD_JOB_NAME: samba-o3
267   only:
268     variables:
269       # do not run o3 for coverage since they are using different images
270       - $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE == ""
271
272 ubuntu1804-samba-o3:
273   extends: .samba-o3-template
274   image: $SAMBA_CI_CONTAINER_IMAGE_ubuntu1804
275
276 debian10-samba-o3:
277   extends: .samba-o3-template
278   image: $SAMBA_CI_CONTAINER_IMAGE_debian10
279
280 opensuse150-samba-o3:
281   extends: .samba-o3-template
282   image: $SAMBA_CI_CONTAINER_IMAGE_opensuse150
283
284 opensuse151-samba-o3:
285   extends: .samba-o3-template
286   image: $SAMBA_CI_CONTAINER_IMAGE_opensuse151
287
288 centos7-samba-o3:
289   extends: .samba-o3-template
290   image: $SAMBA_CI_CONTAINER_IMAGE_centos7
291   variables:
292     # Git on CentOS doesn't support shallow git cloning
293     GIT_DEPTH: ""
294     # We need a newer GnuTLS version on CentOS7
295     PKG_CONFIG_PATH: "/usr/lib64/compat-gnutls34/pkgconfig:/usr/lib64/compat-nettle32/pkgconfig"
296
297 centos8-samba-o3:
298   extends: .samba-o3-template
299   image: $SAMBA_CI_CONTAINER_IMAGE_centos8
300
301 fedora29-samba-o3:
302   extends: .samba-o3-template
303   image: $SAMBA_CI_CONTAINER_IMAGE_fedora29
304
305 fedora30-samba-o3:
306   extends: .samba-o3-template
307   image: $SAMBA_CI_CONTAINER_IMAGE_fedora30
308
309 fedora31-samba-o3:
310   extends: .samba-o3-template
311   image: $SAMBA_CI_CONTAINER_IMAGE_fedora31
312
313 #
314 # Keep the samba-o3 sections at the end ...
315 #