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