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: 1185fa2a316b3bb7e0c24e9fb8279d4c17450809
26 # We use the ubuntu1804 image as default as
27 # it matches what we have on sn-devel-184.
28 SAMBA_CI_CONTAINER_IMAGE: ubuntu1804
30 # The following images are available
31 # Please see the samba-o3 sections at the end of this file!
32 # We should run that for each available image
34 SAMBA_CI_CONTAINER_IMAGE_ubuntu1804: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-ubuntu1804:${SAMBA_CI_CONTAINER_TAG}
35 SAMBA_CI_CONTAINER_IMAGE_ubuntu1604: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-ubuntu1604:${SAMBA_CI_CONTAINER_TAG}
36 SAMBA_CI_CONTAINER_IMAGE_debian9: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-debian9:${SAMBA_CI_CONTAINER_TAG}
37 SAMBA_CI_CONTAINER_IMAGE_opensuse150: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-opensuse150:${SAMBA_CI_CONTAINER_TAG}
38 SAMBA_CI_CONTAINER_IMAGE_fedora29: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-fedora29:${SAMBA_CI_CONTAINER_TAG}
39 SAMBA_CI_CONTAINER_IMAGE_centos7: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-centos7:${SAMBA_CI_CONTAINER_TAG}
42 # The image creation details are specified in a separate file
43 # See bootstrap/README.md for details
44 - 'bootstrap/.gitlab-ci.yml'
48 AUTOBUILD_JOB_NAME: $CI_JOB_NAME
49 image: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-${SAMBA_CI_CONTAINER_IMAGE}:${SAMBA_CI_CONTAINER_TAG}
62 # ld will fail if coverage enabled, force link ld to ld.bfd
63 - if [ -n "$SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE" ]; then sudo ln -sf $(which ld.bfd) $(which ld); fi
64 # See bootstrap/.gitlab-ci.yml how to generate a new image
65 - echo "SAMBA_CI_CONTAINER_REGISTRY[${SAMBA_CI_CONTAINER_REGISTRY}]"
66 - echo "SAMBA_CI_CONTAINER_TAG[${SAMBA_CI_CONTAINER_TAG}]"
67 - bootstrap/template.py --sha1sum > /tmp/sha1sum-template.txt
68 - diff -u bootstrap/sha1sum.txt /tmp/sha1sum-template.txt
69 - echo "${SAMBA_CI_CONTAINER_TAG}" > /tmp/sha1sum-tag.txt
70 - diff -u bootstrap/sha1sum.txt /tmp/sha1sum-tag.txt
71 - diff -u bootstrap/sha1sum.txt /sha1sum.txt
87 - runner_system_failure
88 - stuck_or_timeout_failure
90 # gitlab predefines CI_JOB_NAME for each job. The gitlab job usually matches the
91 # autobuild name, which means we can define a default template that runs most autobuild jobs
92 - echo "Running cmd script/autobuild.py $AUTOBUILD_JOB_NAME $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase"
93 - script/autobuild.py $AUTOBUILD_JOB_NAME $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
96 extends: .shared_template
98 - script/autobuild.py ldb $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
99 - script/autobuild.py pidl $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
100 - script/autobuild.py replace $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
101 - script/autobuild.py talloc $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
102 - script/autobuild.py tdb $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
103 - script/autobuild.py tevent $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
106 extends: .shared_template
109 extends: .shared_template
112 extends: .shared_template
115 extends: .shared_template
118 extends: .shared_template
121 extends: .shared_template
124 extends: .shared_template
127 extends: .shared_template
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
166 # These jobs are only run if the gitlab repo has private runners available.
167 # To enable private jobs, you must add the following var and value to
168 # your gitlab repo by navigating to:
169 # settings -> CI/CD -> Environment variables
170 - $SUPPORT_PRIVATE_TEST == "yes"
173 extends: .private_template
176 extends: .private_template
179 extends: .private_template
182 extends: .private_template
184 # 'pages' is a special job which can publish artifacts in `public` dir to gitlab pages
186 image: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-${SAMBA_CI_CONTAINER_IMAGE}:${SAMBA_CI_CONTAINER_TAG}
191 dependencies: # tell gitlab to download artifacts for these jobs
209 - samba-schemaupgrade
216 - ./configure.developer
218 - lcov $(ls *.info | xargs -I{} echo -n "-a {} ") -o all.info
219 - genhtml all.info --output-directory public --prefix=$(pwd) --title "coverage report for $CI_COMMIT_REF_NAME $CI_COMMIT_SHORT_SHA"
226 - $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE == "--enable-coverage"
229 # We build samba-o3 on all supported distributions
233 extends: .shared_template
235 AUTOBUILD_JOB_NAME: samba-o3
238 # do not run o3 for coverage since they are using different images
239 - $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE != "--enable-coverage"
242 extends: .samba-o3-template
243 image: $SAMBA_CI_CONTAINER_IMAGE_ubuntu1804
246 extends: .samba-o3-template
247 image: $SAMBA_CI_CONTAINER_IMAGE_ubuntu1604
250 extends: .samba-o3-template
251 image: $SAMBA_CI_CONTAINER_IMAGE_debian9
253 opensuse150-samba-o3:
254 extends: .samba-o3-template
255 image: $SAMBA_CI_CONTAINER_IMAGE_opensuse150
258 extends: .samba-o3-template
259 image: $SAMBA_CI_CONTAINER_IMAGE_centos7
261 # Git on CentOS doesn't support shallow git cloning
265 extends: .samba-o3-template
266 image: $SAMBA_CI_CONTAINER_IMAGE_fedora29
269 # Keep the samba-o3 sections at the end ...