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
130 extends: .shared_template
133 extends: .shared_template
136 extends: .shared_template
139 extends: .shared_template
142 extends: .shared_template
145 extends: .shared_template
148 extends: .shared_template
151 extends: .shared_template
154 extends: .shared_template
157 extends: .shared_template
160 extends: .shared_template
163 extends: .shared_template
166 extends: .shared_template
167 image: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-ubuntu1604:${SAMBA_CI_CONTAINER_TAG}
170 extends: .shared_template
173 extends: .shared_template
176 extends: .shared_template
179 extends: .shared_template
181 samba-ad-dc-4-mitkrb5:
182 extends: .shared_template
185 extends: .shared_template
186 image: $SAMBA_CI_CONTAINER_IMAGE_fedora31
189 extends: .shared_template
195 # These jobs are only run if the gitlab repo has private runners available.
196 # To enable private jobs, you must add the following var and value to
197 # your gitlab repo by navigating to:
198 # settings -> CI/CD -> Environment variables
199 - $SUPPORT_PRIVATE_TEST == "yes"
202 extends: .private_template
205 extends: .private_template
208 extends: .private_template
211 extends: .private_template
214 extends: .private_template
216 samba-ad-dc-1-mitkrb5:
217 extends: .private_template
219 # 'pages' is a special job which can publish artifacts in `public` dir to gitlab pages
221 image: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-${SAMBA_CI_CONTAINER_IMAGE}:${SAMBA_CI_CONTAINER_TAG}
226 dependencies: # tell gitlab to download artifacts for these jobs
245 - samba-ad-dc-4-mitkrb5
250 - samba-schemaupgrade
251 - samba-ad-dc-1-mitkrb5
254 - ./configure.developer
256 - lcov $(ls *.info | xargs -I{} echo -n "-a {} ") -o all.info
257 - genhtml all.info --output-directory public --prefix=$(pwd) --title "coverage report for $CI_COMMIT_REF_NAME $CI_COMMIT_SHORT_SHA"
264 - $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE == "--enable-coverage"
269 image: $SAMBA_CI_CONTAINER_IMAGE_fedora32
274 - wget https://scan.coverity.com/download/linux64 --post-data "token=$COVERITY_SCAN_TOKEN&project=$COVERITY_SCAN_PROJECT_NAME" -O /tmp/coverity_tool.tgz
275 - tar xf /tmp/coverity_tool.tgz
276 - ./configure.developer --with-system-mitkrb5 --with-experimental-mit-ad-dc
277 - cov-analysis-linux64-*/bin/cov-build --dir cov-int make -j$(nproc)
278 - tar czf cov-int.tar.gz cov-int
280 --form token=$COVERITY_SCAN_TOKEN
281 --form email=$COVERITY_SCAN_EMAIL
282 --form file=@cov-int.tar.gz
283 --form version="`git describe --tags`"
284 --form description="CI build"
285 https://scan.coverity.com/builds?project=$COVERITY_SCAN_PROJECT_NAME
291 - $COVERITY_SCAN_TOKEN != null
292 - $COVERITY_SCAN_PROJECT_NAME != null
293 - $COVERITY_SCAN_EMAIL != null
301 # We build samba-o3 on all supported distributions
305 extends: .shared_template
307 AUTOBUILD_JOB_NAME: samba-o3
310 # do not run o3 for coverage since they are using different images
311 - $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE == ""
314 extends: .samba-o3-template
315 image: $SAMBA_CI_CONTAINER_IMAGE_ubuntu1804
318 extends: .samba-o3-template
319 image: $SAMBA_CI_CONTAINER_IMAGE_ubuntu2004
322 extends: .samba-o3-template
323 image: $SAMBA_CI_CONTAINER_IMAGE_debian10
325 opensuse150-samba-o3:
326 extends: .samba-o3-template
327 image: $SAMBA_CI_CONTAINER_IMAGE_opensuse150
329 opensuse151-samba-o3:
330 extends: .samba-o3-template
331 image: $SAMBA_CI_CONTAINER_IMAGE_opensuse151
334 extends: .samba-o3-template
335 image: $SAMBA_CI_CONTAINER_IMAGE_centos7
337 # Git on CentOS doesn't support shallow git cloning
339 # We need a newer GnuTLS version on CentOS7
340 PKG_CONFIG_PATH: "/usr/lib64/compat-gnutls34/pkgconfig:/usr/lib64/compat-nettle32/pkgconfig"
343 extends: .samba-o3-template
344 image: $SAMBA_CI_CONTAINER_IMAGE_centos8
347 extends: .samba-o3-template
348 image: $SAMBA_CI_CONTAINER_IMAGE_fedora31
351 extends: .samba-o3-template
352 image: $SAMBA_CI_CONTAINER_IMAGE_fedora32
355 # Keep the samba-o3 sections at the end ...