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: 970e3a86b8a9dc10a0a3ec716ab355eb9664dc38
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_opensuse150: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-opensuse150:${SAMBA_CI_CONTAINER_TAG}
40 SAMBA_CI_CONTAINER_IMAGE_opensuse151: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-opensuse151:${SAMBA_CI_CONTAINER_TAG}
41 SAMBA_CI_CONTAINER_IMAGE_fedora29: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-fedora29:${SAMBA_CI_CONTAINER_TAG}
42 SAMBA_CI_CONTAINER_IMAGE_fedora30: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-fedora30:${SAMBA_CI_CONTAINER_TAG}
43 SAMBA_CI_CONTAINER_IMAGE_centos7: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-centos7:${SAMBA_CI_CONTAINER_TAG}
46 # The image creation details are specified in a separate file
47 # See bootstrap/README.md for details
48 - 'bootstrap/.gitlab-ci.yml'
52 AUTOBUILD_JOB_NAME: $CI_JOB_NAME
53 image: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-${SAMBA_CI_CONTAINER_IMAGE}:${SAMBA_CI_CONTAINER_TAG}
66 # ld will fail if coverage enabled, force link ld to ld.bfd
67 - if [ -n "$SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE" ]; then sudo ln -sf $(which ld.bfd) $(which ld); fi
68 # See bootstrap/.gitlab-ci.yml how to generate a new image
69 - echo "SAMBA_CI_CONTAINER_REGISTRY[${SAMBA_CI_CONTAINER_REGISTRY}]"
70 - echo "SAMBA_CI_CONTAINER_TAG[${SAMBA_CI_CONTAINER_TAG}]"
71 - bootstrap/template.py --sha1sum > /tmp/sha1sum-template.txt
72 - diff -u bootstrap/sha1sum.txt /tmp/sha1sum-template.txt
73 - echo "${SAMBA_CI_CONTAINER_TAG}" > /tmp/sha1sum-tag.txt
74 - diff -u bootstrap/sha1sum.txt /tmp/sha1sum-tag.txt
75 - diff -u bootstrap/sha1sum.txt /sha1sum.txt
91 - runner_system_failure
92 - stuck_or_timeout_failure
94 # gitlab predefines CI_JOB_NAME for each job. The gitlab job usually matches the
95 # autobuild name, which means we can define a default template that runs most autobuild jobs
96 - echo "Running cmd script/autobuild.py $AUTOBUILD_JOB_NAME $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase"
97 - script/autobuild.py $AUTOBUILD_JOB_NAME $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
100 extends: .shared_template
102 - script/autobuild.py ldb $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
103 - script/autobuild.py pidl $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
104 - script/autobuild.py replace $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
105 - script/autobuild.py talloc $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
106 - script/autobuild.py tdb $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
107 - script/autobuild.py tevent $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
110 extends: .shared_template
113 extends: .shared_template
116 extends: .shared_template
119 extends: .shared_template
122 extends: .shared_template
125 extends: .shared_template
128 extends: .shared_template
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
167 # These jobs are only run if the gitlab repo has private runners available.
168 # To enable private jobs, you must add the following var and value to
169 # your gitlab repo by navigating to:
170 # settings -> CI/CD -> Environment variables
171 - $SUPPORT_PRIVATE_TEST == "yes"
174 extends: .private_template
177 extends: .private_template
180 extends: .private_template
183 extends: .private_template
186 extends: .private_template
189 extends: .private_template
191 # 'pages' is a special job which can publish artifacts in `public` dir to gitlab pages
193 image: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-${SAMBA_CI_CONTAINER_IMAGE}:${SAMBA_CI_CONTAINER_TAG}
198 dependencies: # tell gitlab to download artifacts for these jobs
216 - samba-schemaupgrade
223 - ./configure.developer
225 - lcov $(ls *.info | xargs -I{} echo -n "-a {} ") -o all.info
226 - genhtml all.info --output-directory public --prefix=$(pwd) --title "coverage report for $CI_COMMIT_REF_NAME $CI_COMMIT_SHORT_SHA"
233 - $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE == "--enable-coverage"
236 # We build samba-o3 on all supported distributions
240 extends: .shared_template
242 AUTOBUILD_JOB_NAME: samba-o3
245 # do not run o3 for coverage since they are using different images
246 - $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE == ""
249 extends: .samba-o3-template
250 image: $SAMBA_CI_CONTAINER_IMAGE_ubuntu1804
253 extends: .samba-o3-template
254 image: $SAMBA_CI_CONTAINER_IMAGE_ubuntu1604
257 extends: .samba-o3-template
258 image: $SAMBA_CI_CONTAINER_IMAGE_debian9
260 opensuse150-samba-o3:
261 extends: .samba-o3-template
262 image: $SAMBA_CI_CONTAINER_IMAGE_opensuse150
264 opensuse151-samba-o3:
265 extends: .samba-o3-template
266 image: $SAMBA_CI_CONTAINER_IMAGE_opensuse151
269 extends: .samba-o3-template
270 image: $SAMBA_CI_CONTAINER_IMAGE_centos7
272 # Git on CentOS doesn't support shallow git cloning
276 extends: .samba-o3-template
277 image: $SAMBA_CI_CONTAINER_IMAGE_fedora29
280 extends: .samba-o3-template
281 image: $SAMBA_CI_CONTAINER_IMAGE_fedora30
284 # Keep the samba-o3 sections at the end ...