1 # see https://docs.gitlab.com/ce/ci/yaml/README.html for all available options
5 # images: Build the images with the bootstrap script
6 # build_first: Build a few things first to find silly errors (fast job)
7 # (don't pay for 35 machines until something compiles)
8 # build: The main parallel job
9 # (keep these to 1hour as we are billed per hour)
10 # test_only: Tests using the build from prior stages, these typically
11 # have an explicit dependency defined to a specific build job,
12 # which means that start as soon as the build job finished.
13 # test_private: Like test_only, but running on private runners
14 # report: Code coverage reporting
25 # We want to be resilient to runner failures
26 ARTIFACT_DOWNLOAD_ATTEMPTS: "3"
27 EXECUTOR_JOB_SECTION_ATTEMPTS: "3"
28 GET_SOURCES_ATTEMPTS: "3"
29 RESTORE_CACHE_ATTEMPTS: "3"
34 # we run autobuild.py inside a samba CI docker image located on gitlab's registry
35 # overwrite this variable if you want use your own image registry.
37 # Or better ask for access to the shared development repository, see
38 # https://wiki.samba.org/index.php/Samba_CI_on_gitlab#Getting_Access
40 SAMBA_CI_CONTAINER_REGISTRY: registry.gitlab.com/samba-team/devel/samba
42 # Set this to the contents of bootstrap/sha1sum.txt
43 # which is generated by bootstrap/template.py --render
45 SAMBA_CI_CONTAINER_TAG: dd2b9a1848eed2d200e1a525695e40f06c23d888
47 # We use the ubuntu1804 image as default as
48 # it matches what we have on sn-devel-184.
50 SAMBA_CI_CONTAINER_IMAGE: ubuntu1804
52 # The following images are available
53 # Please see the samba-o3 sections at the end of this file!
54 # We should run that for each available image
56 SAMBA_CI_CONTAINER_IMAGE_ubuntu1604: ubuntu1604
57 SAMBA_CI_CONTAINER_IMAGE_ubuntu1804: ubuntu1804
58 SAMBA_CI_CONTAINER_IMAGE_ubuntu2004: ubuntu2004
59 SAMBA_CI_CONTAINER_IMAGE_debian9: debian9
60 SAMBA_CI_CONTAINER_IMAGE_debian10: debian10
61 SAMBA_CI_CONTAINER_IMAGE_debian11: debian11
62 SAMBA_CI_CONTAINER_IMAGE_opensuse151: opensuse151
63 SAMBA_CI_CONTAINER_IMAGE_opensuse152: opensuse152
64 SAMBA_CI_CONTAINER_IMAGE_fedora33: fedora33
65 SAMBA_CI_CONTAINER_IMAGE_fedora34: fedora34
66 SAMBA_CI_CONTAINER_IMAGE_centos7: centos7
67 SAMBA_CI_CONTAINER_IMAGE_centos8: centos8
70 # The image creation details are specified in a separate file
71 # See bootstrap/README.md for details
72 - 'bootstrap/.gitlab-ci.yml'
74 .shared_runner_build_image:
75 extends: .shared_runner_build
77 SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE}
78 image: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-${SAMBA_CI_JOB_IMAGE}:${SAMBA_CI_CONTAINER_TAG}
81 extends: .shared_runner_build_image
82 # All Samba jobs are interruptible, this avoids burning CPU when a
83 # newer branch is pushed.
87 # Otherwise we run twice, once on push and once on MR
88 # https://forum.gitlab.com/t/new-rules-syntax-and-detached-pipelines/37292
90 - if: $CI_MERGE_REQUEST_ID
95 AUTOBUILD_JOB_NAME: $CI_JOB_NAME
98 key: ccache.${CI_JOB_NAME}.${SAMBA_CI_JOB_IMAGE}.${SAMBA_CI_FLAVOR}
102 # This is overridden in many cases, but ensures none of the other
103 # main jobs start until and unless this build finishes. However
104 # this also ensures we do not download artifacts from any build
105 # unless we specifically depend on it, saving bandwidth
108 - job: samba-def-build
114 - cat /etc/os-release
121 # ld will fail if coverage enabled, force link ld to ld.bfd
122 - if [ -n "$SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE" ]; then sudo ln -sf $(which ld.bfd) $(which ld); fi
123 # See bootstrap/.gitlab-ci.yml how to generate a new image
124 - echo "SAMBA_CI_CONTAINER_REGISTRY[${SAMBA_CI_CONTAINER_REGISTRY}]"
125 - echo "SAMBA_CI_CONTAINER_TAG[${SAMBA_CI_CONTAINER_TAG}]"
126 - echo "SAMBA_CI_JOB_IMAGE[${SAMBA_CI_JOB_IMAGE}]"
127 - echo "CI_JOB_IMAGE[${CI_JOB_IMAGE}]"
128 - bootstrap/template.py --sha1sum > /tmp/sha1sum-template.txt
129 - diff -u bootstrap/sha1sum.txt /tmp/sha1sum-template.txt
130 - echo "${SAMBA_CI_CONTAINER_TAG}" > /tmp/sha1sum-tag.txt
131 - diff -u bootstrap/sha1sum.txt /tmp/sha1sum-tag.txt
132 - diff -u bootstrap/sha1sum.txt /sha1sum.txt
133 - echo "${CI_COMMIT_SHA} ${CI_COMMIT_TITLE}" > /tmp/commit.txt
134 - export CCACHE_BASEDIR="${PWD}"
135 - export CCACHE_DIR="${PWD}/ccache" && mkdir -pv "$CCACHE_DIR"
136 - export CC="ccache cc"
137 - export CXX="ccache c++"
145 - CCACHE_BASEDIR="${PWD}" CCACHE_DIR="${PWD}/ccache" ccache -s -c
157 - runner_system_failure
158 - stuck_or_timeout_failure
164 - data_integrity_failure
167 # gitlab predefines CI_JOB_NAME for each job. The gitlab job usually matches the
168 # autobuild name, which means we can define a default template that runs most autobuild jobs
169 - script/autobuild.py $AUTOBUILD_JOB_NAME $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase
171 # Ensure when adding a new job below that you also add it to
172 # the dependencies for 'pages' below for the code coverage page
176 extends: .shared_template
178 - script/autobuild.py ldb $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase/ldb
179 - script/autobuild.py pidl $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase/pidl
180 - script/autobuild.py replace $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase/replace
181 - script/autobuild.py talloc $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase/talloc
182 - script/autobuild.py tdb $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase/tdb
183 - script/autobuild.py tevent $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase/tevent
184 - script/autobuild.py samba-xc $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase/samba-xc
185 - script/autobuild.py docs-xml $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase/docs-xml
187 .shared_template_build_only:
188 extends: .shared_template
198 - samba-testbase.tar.gz
200 # gitlab predefines CI_JOB_NAME for each job. The gitlab job usually matches the
201 # autobuild name, which means we can define a default template that runs most autobuild jobs
202 - script/autobuild.py $AUTOBUILD_JOB_NAME $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase
203 # On success we need to pack everything into an artifacts file
204 # which needs to be in the git checkout.
205 # As tar doesn't handle hardlink of read-only files,
206 # we remember the acls and add write permissions
207 # before creating the archive. The consumer will apply
209 - cp -a /sha1sum.txt /tmp/samba-testbase/image-sha1sum.txt
210 - cp -a /tmp/commit.txt /tmp/samba-testbase/commit.txt
211 - ln -s /tmp/samba-testbase/${AUTOBUILD_JOB_NAME}/ /tmp/samba-testbase/build_subdir_link
212 - pushd /tmp && getfacl -R samba-testbase > samba-testbase.acl.dump && popd
213 - chmod -R +w /tmp/samba-testbase
214 - mv /tmp/samba-testbase.acl.dump /tmp/samba-testbase/
215 - tar cfz samba-testbase.tar.gz /tmp/samba-testbase
216 - ls -la samba-testbase.tar.gz
217 - sha1sum samba-testbase.tar.gz
219 .shared_template_test_only:
222 - .shared_runner_test
225 # We unpack the artifacts file created by the .shared_template_build_only
227 - ls -la samba-testbase.tar.gz
228 - sha1sum samba-testbase.tar.gz
229 - tar xfz samba-testbase.tar.gz -C /
230 - diff -u /tmp/samba-testbase/image-sha1sum.txt /sha1sum.txt
231 - diff -u /tmp/samba-testbase/commit.txt /tmp/commit.txt
232 - mv /tmp/samba-testbase/samba-testbase.acl.dump /tmp/samba-testbase.acl.dump
233 - pushd /tmp && setfacl --restore=/tmp/samba-testbase.acl.dump && popd
234 - ls -la /tmp/samba-testbase/
235 - ls -la /tmp/samba-testbase/build_subdir_link
236 - ls -la /tmp/samba-testbase/build_subdir_link/
237 - if [ -n "$SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE" ]; then find /tmp/samba-testbase/build_subdir_link/ -type d -printf "'%p'\n" | xargs chmod u+w; fi
238 - ls -la /tmp/samba-testbase/build_subdir_link/
239 # gitlab predefines CI_JOB_NAME for each job. The gitlab job usually matches the
240 # autobuild name, which means we can define a default template that runs most autobuild jobs
241 - script/autobuild.py $AUTOBUILD_JOB_NAME $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --skip-dependencies --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase
244 extends: .shared_template_build_only
247 .needs_samba-def-build:
248 extends: .shared_template_test_only
250 - job: samba-def-build
254 extends: .shared_template_build_only
256 SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_fedora34}
259 .needs_samba-mit-build:
260 extends: .shared_template_test_only
262 SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_fedora34}
264 - job: samba-mit-build
268 extends: .shared_template_build_only
270 .needs_samba-h5l-build:
271 extends: .shared_template_test_only
273 - job: samba-h5l-build
277 extends: .shared_template_build_only
279 .needs_samba-nt4-build:
280 extends: .shared_template_test_only
282 - job: samba-nt4-build
285 samba-no-opath-build:
286 extends: .shared_template_build_only
288 .needs_samba-no-opath-build:
289 extends: .shared_template_test_only
291 - job: samba-no-opath-build
295 extends: .shared_template
298 extends: .shared_template
300 SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_fedora34}
303 extends: .shared_template
306 extends: .shared_template
309 extends: .needs_samba-def-build
312 extends: .needs_samba-def-build
315 extends: .needs_samba-def-build
318 extends: .needs_samba-def-build
321 extends: .needs_samba-def-build
324 extends: .needs_samba-def-build
327 extends: .needs_samba-def-build
330 extends: .needs_samba-def-build
333 extends: .needs_samba-def-build
336 extends: .needs_samba-def-build
339 extends: .shared_template
342 extends: .shared_template
344 SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_ubuntu1604}
347 extends: .shared_template
350 extends: .shared_template
353 extends: .needs_samba-def-build
356 extends: .needs_samba-mit-build
359 extends: .needs_samba-mit-build
362 extends: .needs_samba-mit-build
364 # This task is run first to ensure we compile before we start the
365 # main run as it is the fastest full compile of Samba.
367 extends: .shared_template
369 SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_fedora34}
372 extends: .private_runner_test
375 # See above, to avoid a duplicate CI on the MR (these rules override the others)
376 - if: $CI_MERGE_REQUEST_ID
379 # These jobs are only run if the gitlab repo has private runners available.
380 # To enable private jobs, you must add the following var and value to
381 # your gitlab repo by navigating to:
382 # settings -> CI/CD -> Environment variables
383 - if: $SUPPORT_PRIVATE_TEST == "yes"
385 .needs_samba-def-build-private:
387 - .needs_samba-def-build
390 .needs_samba-mit-build-private:
392 - .needs_samba-mit-build
395 .needs_samba-h5l-build-private:
397 - .needs_samba-h5l-build
400 .needs_samba-nt4-build-private:
402 - .needs_samba-nt4-build
405 .needs_samba-no-opath-build-private:
407 - .needs_samba-no-opath-build
411 extends: .needs_samba-h5l-build-private
413 # This is a full build without the AD DC so we test the build with MIT
414 # Kerberos from the default system (Ubuntu 18.04 at this stage).
415 # Runtime behaviour checked via the ktest (static ccache and keytab)
418 extends: .shared_template
421 extends: .needs_samba-def-build-private
424 extends: .needs_samba-nt4-build-private
427 extends: .needs_samba-mit-build-private
430 extends: .needs_samba-no-opath-build-private
433 extends: .needs_samba-no-opath-build-private
435 # 'pages' is a special job which can publish artifacts in `public` dir to gitlab pages
437 extends: .shared_runner_build_image
439 dependencies: # tell gitlab to download artifacts for these jobs
465 - samba-schemaupgrade
470 - ubuntu1804-samba-o3
473 - ./configure.developer
476 - lcov $(ls *.info | xargs -I{} echo -n "-a {} ") -o all.info
478 - genhtml all.info --output-directory public --prefix=$(pwd) --title "coverage report for $CI_COMMIT_REF_NAME $CI_COMMIT_SHORT_SHA"
485 - $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE == "--enable-coverage"
489 extends: .shared_runner_build_image
491 SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_fedora34}
494 - wget https://scan.coverity.com/download/linux64 --post-data "token=$COVERITY_SCAN_TOKEN&project=$COVERITY_SCAN_PROJECT_NAME" -O /tmp/coverity_tool.tgz
495 - tar xf /tmp/coverity_tool.tgz
496 - ./configure.developer --with-cluster-support --with-system-mitkrb5 --with-experimental-mit-ad-dc
497 - cov-analysis-linux64-*/bin/cov-build --dir cov-int make -j$(nproc)
498 - tar czf cov-int.tar.gz cov-int
500 --form token=$COVERITY_SCAN_TOKEN
501 --form email=$COVERITY_SCAN_EMAIL
502 --form file=@cov-int.tar.gz
503 --form version="`git describe --tags`"
504 --form description="CI build"
505 https://scan.coverity.com/builds?project=$COVERITY_SCAN_PROJECT_NAME
511 - $COVERITY_SCAN_TOKEN != null
512 - $COVERITY_SCAN_PROJECT_NAME != null
513 - $COVERITY_SCAN_EMAIL != null
521 # We build samba-o3 on all supported distributions
524 # This job, which matches the main CI, needs to still do coverage so
525 # we show the coverage on the "none" environment tests
527 # We want --enable-coverage specified here otherwise we will have a
528 # different set of build options on the coverage build and can fail
529 # when -O3 gets combined with --enable-coverage in the scheduled
533 extends: .shared_template
535 AUTOBUILD_JOB_NAME: samba-o3
536 SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_ubuntu1804}
537 SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE: "--enable-coverage"
539 # See above, to avoid a duplicate CI on the MR (these rules override the others)
540 - if: $CI_MERGE_REQUEST_ID
542 # do not run o3 builds (which run a lot of VMs) if told not to
543 # (this uses the same variable as autobuild.py)
544 - if: $AUTOBUILD_SKIP_SAMBA_O3 == "1"
547 # All other jobs do not want code coverage.
549 extends: .shared_template
551 AUTOBUILD_JOB_NAME: samba-o3
553 # See above, to avoid a duplicate CI on the MR (these rules override the others)
554 - if: $CI_MERGE_REQUEST_ID
556 # do not run o3 builds (which run a lot of VMs) if told not to
557 # (this uses the same variable as autobuild.py)
558 - if: $AUTOBUILD_SKIP_SAMBA_O3 == "1"
560 # do not run o3 for coverage since they are using different images
561 - if: $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE == ""
564 extends: .samba-o3-template
566 SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_ubuntu2004}
569 extends: .samba-o3-template
571 SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_debian10}
574 extends: .samba-o3-template
576 SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_debian11}
578 opensuse151-samba-o3:
579 extends: .samba-o3-template
581 SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_opensuse151}
583 opensuse152-samba-o3:
584 extends: .samba-o3-template
586 SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_opensuse152}
589 extends: .samba-o3-template
591 SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_centos7}
592 # Git on CentOS doesn't support shallow git cloning
594 # We need a newer GnuTLS version on CentOS7
595 PKG_CONFIG_PATH: "/usr/lib64/compat-gnutls34/pkgconfig:/usr/lib64/compat-nettle32/pkgconfig"
598 extends: .samba-o3-template
600 SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_centos8}
603 extends: .samba-o3-template
605 SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_fedora33}
608 extends: .samba-o3-template
610 SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_fedora34}
613 # Keep the samba-o3 sections at the end ...