1 # see https://docs.gitlab.com/ce/ci/yaml/README.html for all available options
11 # "--enable-coverage" or ""
12 SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE: ""
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.
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
20 SAMBA_CI_CONTAINER_REGISTRY: registry.gitlab.com/samba-team/devel/samba
22 # Set this to the contents of bootstrap/sha1sum.txt
23 # which is generated by bootstrap/template.py --render
25 SAMBA_CI_CONTAINER_TAG: 9061307e79ad13733c69352a965eeb4f44bef4b7
27 # We use the ubuntu1804 image as default as
28 # it matches what we have on sn-devel-184.
30 SAMBA_CI_CONTAINER_IMAGE: ubuntu1804
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
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_fedora31: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-fedora31:${SAMBA_CI_CONTAINER_TAG}
43 SAMBA_CI_CONTAINER_IMAGE_fedora32: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-fedora32:${SAMBA_CI_CONTAINER_TAG}
44 SAMBA_CI_CONTAINER_IMAGE_centos7: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-centos7:${SAMBA_CI_CONTAINER_TAG}
45 SAMBA_CI_CONTAINER_IMAGE_centos8: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-centos8:${SAMBA_CI_CONTAINER_TAG}
48 # The image creation details are specified in a separate file
49 # See bootstrap/README.md for details
50 - 'bootstrap/.gitlab-ci.yml'
54 AUTOBUILD_JOB_NAME: $CI_JOB_NAME
55 image: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-${SAMBA_CI_CONTAINER_IMAGE}:${SAMBA_CI_CONTAINER_TAG}
68 # ld will fail if coverage enabled, force link ld to ld.bfd
69 - if [ -n "$SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE" ]; then sudo ln -sf $(which ld.bfd) $(which ld); fi
70 # See bootstrap/.gitlab-ci.yml how to generate a new image
71 - echo "SAMBA_CI_CONTAINER_REGISTRY[${SAMBA_CI_CONTAINER_REGISTRY}]"
72 - echo "SAMBA_CI_CONTAINER_TAG[${SAMBA_CI_CONTAINER_TAG}]"
73 - bootstrap/template.py --sha1sum > /tmp/sha1sum-template.txt
74 - diff -u bootstrap/sha1sum.txt /tmp/sha1sum-template.txt
75 - echo "${SAMBA_CI_CONTAINER_TAG}" > /tmp/sha1sum-tag.txt
76 - diff -u bootstrap/sha1sum.txt /tmp/sha1sum-tag.txt
77 - diff -u bootstrap/sha1sum.txt /sha1sum.txt
93 - runner_system_failure
94 - stuck_or_timeout_failure
96 # gitlab predefines CI_JOB_NAME for each job. The gitlab job usually matches the
97 # autobuild name, which means we can define a default template that runs most autobuild jobs
98 - echo "Running cmd script/autobuild.py $AUTOBUILD_JOB_NAME $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase"
99 - script/autobuild.py $AUTOBUILD_JOB_NAME $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
101 # Ensure when adding a new job below that you also add it to
102 # the dependencies for 'pages' below for the code coverage page
106 extends: .shared_template
108 - script/autobuild.py ldb $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
109 - script/autobuild.py pidl $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
110 - script/autobuild.py replace $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
111 - script/autobuild.py talloc $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
112 - script/autobuild.py tdb $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
113 - script/autobuild.py tevent $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
114 - script/autobuild.py samba-xc $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
117 extends: .shared_template
120 extends: .shared_template
123 extends: .shared_template
126 extends: .shared_template
129 extends: .shared_template
132 extends: .shared_template
135 extends: .shared_template
138 extends: .shared_template
141 extends: .shared_template
144 extends: .shared_template
147 extends: .shared_template
150 extends: .shared_template
153 extends: .shared_template
154 image: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-ubuntu1604:${SAMBA_CI_CONTAINER_TAG}
157 extends: .shared_template
160 extends: .shared_template
163 extends: .shared_template
166 extends: .shared_template
168 samba-ad-dc-4-mitkrb5:
169 extends: .shared_template
172 extends: .shared_template
178 # These jobs are only run if the gitlab repo has private runners available.
179 # To enable private jobs, you must add the following var and value to
180 # your gitlab repo by navigating to:
181 # settings -> CI/CD -> Environment variables
182 - $SUPPORT_PRIVATE_TEST == "yes"
185 extends: .private_template
188 extends: .private_template
191 extends: .private_template
194 extends: .private_template
197 extends: .private_template
199 samba-ad-dc-1-mitkrb5:
200 extends: .private_template
202 # 'pages' is a special job which can publish artifacts in `public` dir to gitlab pages
204 image: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-${SAMBA_CI_CONTAINER_IMAGE}:${SAMBA_CI_CONTAINER_TAG}
209 dependencies: # tell gitlab to download artifacts for these jobs
228 - samba-ad-dc-4-mitkrb5
233 - samba-schemaupgrade
234 - samba-ad-dc-1-mitkrb5
236 - ./configure.developer
238 - lcov $(ls *.info | xargs -I{} echo -n "-a {} ") -o all.info
239 - genhtml all.info --output-directory public --prefix=$(pwd) --title "coverage report for $CI_COMMIT_REF_NAME $CI_COMMIT_SHORT_SHA"
246 - $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE == "--enable-coverage"
249 # We build samba-o3 on all supported distributions
253 extends: .shared_template
255 AUTOBUILD_JOB_NAME: samba-o3
258 # do not run o3 for coverage since they are using different images
259 - $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE == ""
262 extends: .samba-o3-template
263 image: $SAMBA_CI_CONTAINER_IMAGE_ubuntu1804
266 extends: .samba-o3-template
267 image: $SAMBA_CI_CONTAINER_IMAGE_debian10
269 opensuse150-samba-o3:
270 extends: .samba-o3-template
271 image: $SAMBA_CI_CONTAINER_IMAGE_opensuse150
273 opensuse151-samba-o3:
274 extends: .samba-o3-template
275 image: $SAMBA_CI_CONTAINER_IMAGE_opensuse151
278 extends: .samba-o3-template
279 image: $SAMBA_CI_CONTAINER_IMAGE_centos7
281 # Git on CentOS doesn't support shallow git cloning
283 # We need a newer GnuTLS version on CentOS7
284 PKG_CONFIG_PATH: "/usr/lib64/compat-gnutls34/pkgconfig:/usr/lib64/compat-nettle32/pkgconfig"
287 extends: .samba-o3-template
288 image: $SAMBA_CI_CONTAINER_IMAGE_centos8
291 extends: .samba-o3-template
292 image: $SAMBA_CI_CONTAINER_IMAGE_fedora31
295 extends: .samba-o3-template
296 image: $SAMBA_CI_CONTAINER_IMAGE_fedora32
299 # Keep the samba-o3 sections at the end ...