1 # see https://docs.gitlab.com/ce/ci/yaml/README.html for all available options
12 # "--enable-coverage" or ""
13 SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE: ""
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.
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
21 SAMBA_CI_CONTAINER_REGISTRY: registry.gitlab.com/samba-team/devel/samba
23 # Set this to the contents of bootstrap/sha1sum.txt
24 # which is generated by bootstrap/template.py --render
26 SAMBA_CI_CONTAINER_TAG: c6ee634a9467e84ee8dd858b0b363f7a75973a66
28 # We use the ubuntu1804 image as default as
29 # it matches what we have on sn-devel-184.
31 SAMBA_CI_CONTAINER_IMAGE: ubuntu1804
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
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}
50 # The image creation details are specified in a separate file
51 # See bootstrap/README.md for details
52 - 'bootstrap/.gitlab-ci.yml'
56 AUTOBUILD_JOB_NAME: $CI_JOB_NAME
57 image: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-${SAMBA_CI_CONTAINER_IMAGE}:${SAMBA_CI_CONTAINER_TAG}
63 key: ccache.${CI_JOB_NAME}
74 # ld will fail if coverage enabled, force link ld to ld.bfd
75 - if [ -n "$SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE" ]; then sudo ln -sf $(which ld.bfd) $(which ld); fi
76 # See bootstrap/.gitlab-ci.yml how to generate a new image
77 - echo "SAMBA_CI_CONTAINER_REGISTRY[${SAMBA_CI_CONTAINER_REGISTRY}]"
78 - echo "SAMBA_CI_CONTAINER_TAG[${SAMBA_CI_CONTAINER_TAG}]"
79 - bootstrap/template.py --sha1sum > /tmp/sha1sum-template.txt
80 - diff -u bootstrap/sha1sum.txt /tmp/sha1sum-template.txt
81 - echo "${SAMBA_CI_CONTAINER_TAG}" > /tmp/sha1sum-tag.txt
82 - diff -u bootstrap/sha1sum.txt /tmp/sha1sum-tag.txt
83 - diff -u bootstrap/sha1sum.txt /sha1sum.txt
84 - export CCACHE_BASEDIR="${PWD}"
85 - export CCACHE_DIR="${PWD}/ccache" && mkdir -pv "$CCACHE_DIR"
86 - export CC="ccache cc"
87 - export CXX="ccache c++"
95 - CCACHE_BASEDIR="${PWD}" CCACHE_DIR="${PWD}/ccache" ccache -s -c
106 - runner_system_failure
107 - stuck_or_timeout_failure
109 # gitlab predefines CI_JOB_NAME for each job. The gitlab job usually matches the
110 # autobuild name, which means we can define a default template that runs most autobuild jobs
111 - echo "Running cmd script/autobuild.py $AUTOBUILD_JOB_NAME $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase"
112 - script/autobuild.py $AUTOBUILD_JOB_NAME $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
114 # Ensure when adding a new job below that you also add it to
115 # the dependencies for 'pages' below for the code coverage page
119 extends: .shared_template
121 - script/autobuild.py ldb $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
122 - script/autobuild.py pidl $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
123 - script/autobuild.py replace $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
124 - script/autobuild.py talloc $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
125 - script/autobuild.py tdb $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
126 - script/autobuild.py tevent $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
127 - script/autobuild.py samba-xc $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
128 - script/autobuild.py docs-xml $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
131 extends: .shared_template
134 extends: .shared_template
137 extends: .shared_template
140 extends: .shared_template
143 extends: .shared_template
146 extends: .shared_template
149 extends: .shared_template
152 extends: .shared_template
155 extends: .shared_template
158 extends: .shared_template
161 extends: .shared_template
164 extends: .shared_template
167 extends: .shared_template
168 image: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-ubuntu1604:${SAMBA_CI_CONTAINER_TAG}
171 extends: .shared_template
174 extends: .shared_template
177 extends: .shared_template
180 extends: .shared_template
182 samba-ad-dc-4-mitkrb5:
183 extends: .shared_template
186 extends: .shared_template
187 image: $SAMBA_CI_CONTAINER_IMAGE_fedora31
190 extends: .shared_template
196 # These jobs are only run if the gitlab repo has private runners available.
197 # To enable private jobs, you must add the following var and value to
198 # your gitlab repo by navigating to:
199 # settings -> CI/CD -> Environment variables
200 - $SUPPORT_PRIVATE_TEST == "yes"
203 extends: .private_template
206 extends: .private_template
209 extends: .private_template
212 extends: .private_template
215 extends: .private_template
217 samba-ad-dc-1-mitkrb5:
218 extends: .private_template
220 # 'pages' is a special job which can publish artifacts in `public` dir to gitlab pages
222 image: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-${SAMBA_CI_CONTAINER_IMAGE}:${SAMBA_CI_CONTAINER_TAG}
227 dependencies: # tell gitlab to download artifacts for these jobs
246 - samba-ad-dc-4-mitkrb5
251 - samba-schemaupgrade
252 - samba-ad-dc-1-mitkrb5
255 - ./configure.developer
257 - lcov $(ls *.info | xargs -I{} echo -n "-a {} ") -o all.info
258 - genhtml all.info --output-directory public --prefix=$(pwd) --title "coverage report for $CI_COMMIT_REF_NAME $CI_COMMIT_SHORT_SHA"
265 - $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE == "--enable-coverage"
270 image: $SAMBA_CI_CONTAINER_IMAGE_fedora32
275 - wget https://scan.coverity.com/download/linux64 --post-data "token=$COVERITY_SCAN_TOKEN&project=$COVERITY_SCAN_PROJECT_NAME" -O /tmp/coverity_tool.tgz
276 - tar xf /tmp/coverity_tool.tgz
277 - ./configure.developer --with-system-mitkrb5 --with-experimental-mit-ad-dc
278 - cov-analysis-linux64-*/bin/cov-build --dir cov-int make -j$(nproc)
279 - tar czf cov-int.tar.gz cov-int
281 --form token=$COVERITY_SCAN_TOKEN
282 --form email=$COVERITY_SCAN_EMAIL
283 --form file=@cov-int.tar.gz
284 --form version="`git describe --tags`"
285 --form description="CI build"
286 https://scan.coverity.com/builds?project=$COVERITY_SCAN_PROJECT_NAME
292 - $COVERITY_SCAN_TOKEN != null
293 - $COVERITY_SCAN_PROJECT_NAME != null
294 - $COVERITY_SCAN_EMAIL != null
302 # We build samba-o3 on all supported distributions
306 extends: .shared_template
308 AUTOBUILD_JOB_NAME: samba-o3
311 # do not run o3 for coverage since they are using different images
312 - $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE == ""
315 extends: .samba-o3-template
316 image: $SAMBA_CI_CONTAINER_IMAGE_ubuntu1804
319 extends: .samba-o3-template
320 image: $SAMBA_CI_CONTAINER_IMAGE_ubuntu2004
323 extends: .samba-o3-template
324 image: $SAMBA_CI_CONTAINER_IMAGE_debian10
326 opensuse150-samba-o3:
327 extends: .samba-o3-template
328 image: $SAMBA_CI_CONTAINER_IMAGE_opensuse150
330 opensuse151-samba-o3:
331 extends: .samba-o3-template
332 image: $SAMBA_CI_CONTAINER_IMAGE_opensuse151
335 extends: .samba-o3-template
336 image: $SAMBA_CI_CONTAINER_IMAGE_centos7
338 # Git on CentOS doesn't support shallow git cloning
340 # We need a newer GnuTLS version on CentOS7
341 PKG_CONFIG_PATH: "/usr/lib64/compat-gnutls34/pkgconfig:/usr/lib64/compat-nettle32/pkgconfig"
344 extends: .samba-o3-template
345 image: $SAMBA_CI_CONTAINER_IMAGE_centos8
348 extends: .samba-o3-template
349 image: $SAMBA_CI_CONTAINER_IMAGE_fedora31
352 extends: .samba-o3-template
353 image: $SAMBA_CI_CONTAINER_IMAGE_fedora32
356 # Keep the samba-o3 sections at the end ...