smbd: Use filename_convert_dirfsp() in smbd_smb2_create_send()
[Samba.git] / .gitlab-ci-main.yml
blob3ac0e77257616a0fb53ef295d4ca4d918353e04d
1 # see https://docs.gitlab.com/ce/ci/yaml/README.html for all available options
3 # Stages explained
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
16 stages:
17   - images
18   - build_first
19   - build
20   - test_only
21   - test_private
22   - report
24 variables:
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"
30   #
31   GIT_STRATEGY: fetch
32   GIT_DEPTH: "3"
33   #
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.
36   #
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
39   #
40   SAMBA_CI_CONTAINER_REGISTRY: registry.gitlab.com/samba-team/devel/samba
41   #
42   # Set this to the contents of bootstrap/sha1sum.txt
43   # which is generated by bootstrap/template.py --render
44   #
45   SAMBA_CI_CONTAINER_TAG: 70150480b61ebdec7ec9b4c1214461c88d6de6d6
46   #
47   # We use the ubuntu1804 image as default as
48   # it matches what we have on sn-devel-184.
49   #
50   SAMBA_CI_CONTAINER_IMAGE: ubuntu1804
51   #
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
55   #
56   SAMBA_CI_CONTAINER_IMAGE_ubuntu1804: ubuntu1804
57   SAMBA_CI_CONTAINER_IMAGE_ubuntu2004: ubuntu2004
58   SAMBA_CI_CONTAINER_IMAGE_debian11: debian11
59   SAMBA_CI_CONTAINER_IMAGE_opensuse153: opensuse153
60   SAMBA_CI_CONTAINER_IMAGE_fedora35: fedora35
61   SAMBA_CI_CONTAINER_IMAGE_f35mit120: f35mit120
62   SAMBA_CI_CONTAINER_IMAGE_centos7: centos7
63   SAMBA_CI_CONTAINER_IMAGE_centos8s: centos8s
65 include:
66   # The image creation details are specified in a separate file
67   # See bootstrap/README.md for details
68   - 'bootstrap/.gitlab-ci.yml'
70 .shared_runner_build_image:
71   extends: .shared_runner_build
72   variables:
73     SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE}
74   image: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-${SAMBA_CI_JOB_IMAGE}:${SAMBA_CI_CONTAINER_TAG}
76 .shared_template:
77   extends: .shared_runner_build_image
78   # All Samba jobs are interruptible, this avoids burning CPU when a
79   # newer branch is pushed.
80   interruptible: true
81   timeout: 2h
83   # Otherwise we run twice, once on push and once on MR
84   # https://forum.gitlab.com/t/new-rules-syntax-and-detached-pipelines/37292
85   rules:
86     - if: $CI_MERGE_REQUEST_ID
87       when: never
88     - when: on_success
90   variables:
91     AUTOBUILD_JOB_NAME: $CI_JOB_NAME
92   stage: build
93   cache:
94     key: ccache.${CI_JOB_NAME}.${SAMBA_CI_JOB_IMAGE}.${SAMBA_CI_FLAVOR}
95     paths:
96       - ccache
98   # This is overridden in many cases, but ensures none of the other
99   # main jobs start until and unless this build finishes.  However
100   # this also ensures we do not download artifacts from any build
101   # unless we specifically depend on it, saving bandwidth
103   needs:
104     - job: samba-def-build
105       artifacts: false
107   before_script:
108     - uname -a
109     - lsb_release -a
110     - cat /etc/os-release
111     - lscpu
112     - cat /proc/cpuinfo
113     - mount
114     - df -h
115     - cat /proc/swaps
116     - free -h
117       # ld will fail if coverage enabled, force link ld to ld.bfd
118     - if [ -n "$SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE" ]; then sudo ln -sf $(which ld.bfd) $(which ld); fi
119       # See bootstrap/.gitlab-ci.yml how to generate a new image
120     - echo "SAMBA_CI_CONTAINER_REGISTRY[${SAMBA_CI_CONTAINER_REGISTRY}]"
121     - echo "SAMBA_CI_CONTAINER_TAG[${SAMBA_CI_CONTAINER_TAG}]"
122     - echo "SAMBA_CI_JOB_IMAGE[${SAMBA_CI_JOB_IMAGE}]"
123     - echo "CI_JOB_IMAGE[${CI_JOB_IMAGE}]"
124     - bootstrap/template.py --sha1sum > /tmp/sha1sum-template.txt
125     - diff -u bootstrap/sha1sum.txt /tmp/sha1sum-template.txt
126     - echo "${SAMBA_CI_CONTAINER_TAG}" > /tmp/sha1sum-tag.txt
127     - diff -u bootstrap/sha1sum.txt /tmp/sha1sum-tag.txt
128     - diff -u bootstrap/sha1sum.txt /sha1sum.txt
129     - echo "${CI_COMMIT_SHA} ${CI_COMMIT_TITLE}" > /tmp/commit.txt
130     - export CCACHE_BASEDIR="${PWD}"
131     - export CCACHE_DIR="${PWD}/ccache" && mkdir -pv "$CCACHE_DIR"
132     - export CC="ccache cc"
133     - export CXX="ccache c++"
134     - ccache -z -M 500M
135     - ccache -s
136   after_script:
137     - mount
138     - df -h
139     - cat /proc/swaps
140     - free -h
141     - CCACHE_BASEDIR="${PWD}" CCACHE_DIR="${PWD}/ccache" ccache -s -c
142   artifacts:
143     expire_in: 1 week
144     paths:
145       - "*.stdout"
146       - "*.stderr"
147       - "*.info"
148       - public
149       - system-info.txt
150   retry:
151     max: 2
152     when:
153       - runner_system_failure
154       - stuck_or_timeout_failure
155       - api_failure
156       - runner_unsupported
157       - stale_schedule
158       - archived_failure
159       - scheduler_failure
160       - data_integrity_failure
162   script:
163     # gitlab predefines CI_JOB_NAME for each job. The gitlab job usually matches the
164     # autobuild name, which means we can define a default template that runs most autobuild jobs
165     - script/autobuild.py $AUTOBUILD_JOB_NAME $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE  --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase
167 # Ensure when adding a new job below that you also add it to
168 # the dependencies for 'pages' below for the code coverage page
169 # generation.
171 others:
172   extends: .shared_template
173   script:
174     - script/autobuild.py ldb      $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase/ldb
175     - script/autobuild.py pidl     $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase/pidl
176     - script/autobuild.py replace  $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase/replace
177     - script/autobuild.py talloc   $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase/talloc
178     - script/autobuild.py tdb      $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase/tdb
179     - script/autobuild.py tevent   $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase/tevent
180     - script/autobuild.py samba-xc $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase/samba-xc
181     - script/autobuild.py docs-xml $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase/docs-xml
183 .shared_template_build_only:
184   extends: .shared_template
185   timeout: 2h
186   needs:
187   artifacts:
188     expire_in: 1 week
189     paths:
190       - "*.stdout"
191       - "*.stderr"
192       - "*.info"
193       - system-info.txt
194       - samba-testbase.tar.gz
195   script:
196     # gitlab predefines CI_JOB_NAME for each job. The gitlab job usually matches the
197     # autobuild name, which means we can define a default template that runs most autobuild jobs
198     - script/autobuild.py $AUTOBUILD_JOB_NAME $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE  --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase
199     # On success we need to pack everything into an artifacts file
200     # which needs to be in the git checkout.
201     # As tar doesn't handle hardlink of read-only files,
202     # we remember the acls and add write permissions
203     # before creating the archive. The consumer will apply
204     # the acls again.
205     - cp -a /sha1sum.txt /tmp/samba-testbase/image-sha1sum.txt
206     - cp -a /tmp/commit.txt /tmp/samba-testbase/commit.txt
207     - ln -s /tmp/samba-testbase/${AUTOBUILD_JOB_NAME}/ /tmp/samba-testbase/build_subdir_link
208     - pushd /tmp && getfacl -R samba-testbase > samba-testbase.acl.dump && popd
209     - chmod -R +w /tmp/samba-testbase
210     - mv /tmp/samba-testbase.acl.dump /tmp/samba-testbase/
211     - tar cfz samba-testbase.tar.gz /tmp/samba-testbase
212     - ls -la samba-testbase.tar.gz
213     - sha1sum samba-testbase.tar.gz
215 .shared_template_test_only:
216   extends:
217     - .shared_template
218     - .shared_runner_test
219   stage: test_only
220   script:
221     # Print the Kerberos version to check we ended up with the right one
222     # in the runner. We do not have configure output to recognize it
223     # otherwise.
224     - if [ -x "$(command -v krb5-config)" ]; then krb5-config --version; fi
225     # We unpack the artifacts file created by the .shared_template_build_only
226     # run we depend on
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
243 samba-def-build:
244   extends: .shared_template_build_only
245   stage: build_first
247 .needs_samba-def-build:
248   extends: .shared_template_test_only
249   needs:
250     - job: samba-def-build
251       artifacts: true
253 samba-mit-build:
254   extends: .shared_template_build_only
255   variables:
256     SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_fedora35}
257   stage: build_first
259 samba-mit120-build:
260   extends: .shared_template_build_only
261   variables:
262     AUTOBUILD_JOB_NAME: samba-mit-build
263     SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_f35mit120}
264   stage: build_first
266 .needs_samba-mit-build:
267   extends: .shared_template_test_only
268   variables:
269     SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_fedora35}
270   needs:
271     - job: samba-mit-build
272       artifacts: true
274 .needs_samba-mit120-build:
275   extends: .shared_template_test_only
276   variables:
277     SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_f35mit120}
278   needs:
279     - job: samba-mit120-build
280       artifacts: true
282 samba-h5l-build:
283   extends: .shared_template_build_only
285 .needs_samba-h5l-build:
286   extends: .shared_template_test_only
287   needs:
288     - job: samba-h5l-build
289       artifacts: true
291 samba-without-smb1-build:
292   extends: .shared_template_build_only
294 .needs_samba-without-smb1-build:
295   extends: .shared_template_test_only
296   needs:
297     - job: samba-without-smb1-build
298       artifacts: true
300 samba-nt4-build:
301   extends: .shared_template_build_only
303 .needs_samba-nt4-build:
304   extends: .shared_template_test_only
305   needs:
306     - job: samba-nt4-build
307       artifacts: true
309 samba-no-opath-build:
310   extends: .shared_template_build_only
312 .needs_samba-no-opath-build:
313   extends: .shared_template_test_only
314   needs:
315     - job: samba-no-opath-build
316       artifacts: true
318 samba:
319   extends: .shared_template
321 samba-mitkrb5:
322   extends: .shared_template
323   variables:
324     SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_fedora35}
326 samba-minimal-smbd:
327   extends: .shared_template
329 samba-nopython:
330   extends: .shared_template
332 samba-admem:
333   extends: .needs_samba-def-build
335 samba-ad-dc-2:
336   extends: .needs_samba-def-build
338 samba-ad-dc-3:
339   extends: .needs_samba-def-build
341 samba-ad-dc-4a:
342   extends: .needs_samba-def-build
344 samba-ad-dc-4b:
345   extends: .needs_samba-def-build
347 samba-ad-dc-5:
348   extends: .needs_samba-def-build
350 samba-ad-dc-6:
351   extends: .needs_samba-def-build
353 samba-ad-back1:
354   extends: .needs_samba-def-build
356 samba-ad-back2:
357   extends: .needs_samba-def-build
359 samba-schemaupgrade:
360   extends: .needs_samba-def-build
362 samba-libs:
363   extends: .shared_template
365 samba-fuzz:
366   extends: .shared_template
367   variables:
368     SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_ubuntu2004}
370 ctdb:
371   extends: .shared_template
373 samba-ctdb:
374   extends: .shared_template
376 samba-ad-dc-ntvfs:
377   extends: .needs_samba-def-build
379 samba-admem-mit:
380   extends: .needs_samba-mit-build
382 samba-addc-mit-4a:
383   extends: .needs_samba-mit-build
385 samba-addc-mit-4b:
386   extends: .needs_samba-mit-build
388 # This task is run first to ensure we compile before we start the
389 # main run as it is the fastest full compile of Samba.
390 samba-fips:
391   extends: .shared_template
392   variables:
393     SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_fedora35}
395 .private_test_only:
396   extends: .private_runner_test
397   stage: test_private
398   rules:
399       # See above, to avoid a duplicate CI on the MR (these rules override the others)
400     - if: $CI_MERGE_REQUEST_ID
401       when: never
403       # These jobs are only run if the gitlab repo has private runners available.
404       # To enable private jobs, you must add the following var and value to
405       # your gitlab repo by navigating to:
406       # settings -> CI/CD -> Environment variables
407     - if: $SUPPORT_PRIVATE_TEST == "yes"
409 .needs_samba-def-build-private:
410   extends:
411     - .needs_samba-def-build
412     - .private_test_only
414 .needs_samba-mit-build-private:
415   extends:
416     - .needs_samba-mit-build
417     - .private_test_only
419 .needs_samba-mit120-build-private:
420   extends:
421     - .needs_samba-mit120-build
422     - .private_test_only
424 .needs_samba-h5l-build-private:
425   extends:
426     - .needs_samba-h5l-build
427     - .private_test_only
429 .needs_samba-without-smb1-build-private:
430   extends:
431     - .needs_samba-without-smb1-build
432     - .private_test_only
434 .needs_samba-nt4-build-private:
435   extends:
436     - .needs_samba-nt4-build
437     - .private_test_only
439 .needs_samba-no-opath-build-private:
440   extends:
441     - .needs_samba-no-opath-build
442     - .private_test_only
444 samba-fileserver:
445   extends: .needs_samba-h5l-build-private
447 samba-fileserver-without-smb1:
448   extends: .needs_samba-without-smb1-build-private
450 # This is a full build without the AD DC so we test the build with MIT
451 # Kerberos from the default system (Ubuntu 18.04 at this stage).
452 # Runtime behaviour checked via the ktest (static ccache and keytab)
453 # environment
454 samba-ktest-mit:
455  extends: .shared_template
457 samba-ad-dc-1:
458   extends: .needs_samba-def-build-private
460 samba-nt4:
461   extends: .needs_samba-nt4-build-private
463 samba-addc-mit-1:
464   extends: .needs_samba-mit-build-private
466 samba-addc-mit120:
467   extends: .needs_samba-mit120-build-private
468   variables:
469     AUTOBUILD_JOB_NAME: samba-addc-mit-1
471 samba-no-opath1:
472   extends: .needs_samba-no-opath-build-private
474 samba-no-opath2:
475   extends: .needs_samba-no-opath-build-private
477 # 'pages' is a special job which can publish artifacts in `public` dir to gitlab pages
478 pages:
479   extends: .shared_runner_build_image
480   stage: report
481   dependencies:  # tell gitlab to download artifacts for these jobs
482     - others
483     - samba
484     - samba-mitkrb5
485     - samba-admem
486     - samba-ad-dc-2
487     - samba-ad-dc-3
488     - samba-ad-dc-4a
489     - samba-ad-dc-4b
490     - samba-ad-dc-5
491     - samba-ad-dc-6
492     - samba-libs
493     - samba-minimal-smbd
494     - samba-nopython
495     - samba-fuzz
496     # - ctdb  # TODO
497     - samba-ctdb
498     - samba-ad-dc-ntvfs
499     - samba-admem-mit
500     - samba-addc-mit-4a
501     - samba-addc-mit-4b
502     - samba-ad-back1
503     - samba-ad-back2
504     - samba-fileserver
505     - samba-fileserver-without-smb1
506     - samba-ad-dc-1
507     - samba-nt4
508     - samba-schemaupgrade
509     - samba-addc-mit-1
510     - samba-fips
511     - samba-no-opath1
512     - samba-no-opath2
513     - ubuntu1804-samba-o3
514   script:
515     - ls -la *.info
516     - ./configure.developer
517     - make -j
518     - ls -la *.info
519     - lcov $(ls *.info | xargs -I{} echo -n "-a {} ") -o all.info
520     - ls -la *.info
521     - genhtml all.info --ignore-errors source --output-directory public --prefix=$(pwd) --title "coverage report for $CI_COMMIT_REF_NAME $CI_COMMIT_SHORT_SHA"
522   artifacts:
523     expire_in: 30 days
524     paths:
525       - public
526   only:
527     variables:
528       - $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE == "--enable-coverage"
530 # Coverity Scan
531 coverity:
532   extends: .shared_runner_build_image
533   variables:
534     SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_ubuntu2004}
535   stage: build
536   script:
537     - wget https://scan.coverity.com/download/linux64 --post-data "token=$COVERITY_SCAN_TOKEN&project=$COVERITY_SCAN_PROJECT_NAME" -O /tmp/coverity_tool.tgz
538     - tar xf /tmp/coverity_tool.tgz
539     - ./configure.developer --with-cluster-support --with-system-mitkrb5 --with-experimental-mit-ad-dc
540     - cov-analysis-linux64-*/bin/cov-build --dir cov-int make -j$(nproc)
541     - tar czf cov-int.tar.gz cov-int
542     - curl
543       --form token=$COVERITY_SCAN_TOKEN
544       --form email=$COVERITY_SCAN_EMAIL
545       --form file=@cov-int.tar.gz
546       --form version="`git describe --tags`"
547       --form description="CI build"
548       https://scan.coverity.com/builds?project=$COVERITY_SCAN_PROJECT_NAME
549   only:
550     refs:
551       - master
552       - schedules
553     variables:
554       - $COVERITY_SCAN_TOKEN != null
555       - $COVERITY_SCAN_PROJECT_NAME != null
556       - $COVERITY_SCAN_EMAIL != null
557   artifacts:
558     expire_in: 1 week
559     when: on_failure
560     paths:
561       - cov-int/*.txt
564 # We build samba-o3 on all supported distributions
567 # This job, which matches the main CI, needs to still do coverage so
568 # we show the coverage on the "none" environment tests
570 # We want --enable-coverage specified here otherwise we will have a
571 # different set of build options on the coverage build and can fail
572 # when -O3 gets combined with --enable-coverage in the scheduled
573 # builds.
575 ubuntu1804-samba-o3:
576   extends: .shared_template
577   variables:
578     AUTOBUILD_JOB_NAME: samba-o3
579     SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_ubuntu1804}
580     SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE: "--enable-coverage"
581   rules:
582     # See above, to avoid a duplicate CI on the MR (these rules override the others)
583     - if: $CI_MERGE_REQUEST_ID
584       when: never
585     # do not run o3 builds (which run a lot of VMs) if told not to
586     # (this uses the same variable as autobuild.py)
587     - if: $AUTOBUILD_SKIP_SAMBA_O3 == "1"
588       when: never
590 # All other jobs do not want code coverage.
591 .samba-o3-template:
592   extends: .shared_template
593   variables:
594     AUTOBUILD_JOB_NAME: samba-o3
595   rules:
596     # See above, to avoid a duplicate CI on the MR (these rules override the others)
597     - if: $CI_MERGE_REQUEST_ID
598       when: never
599     # do not run o3 builds (which run a lot of VMs) if told not to
600     # (this uses the same variable as autobuild.py)
601     - if: $AUTOBUILD_SKIP_SAMBA_O3 == "1"
602       when: never
603     # do not run o3 for coverage since they are using different images
604     - if: $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE == ""
606 ubuntu2004-samba-o3:
607   extends: .samba-o3-template
608   variables:
609     SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_ubuntu2004}
611 debian11-samba-o3:
612   extends: .samba-o3-template
613   variables:
614     SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_debian11}
616 opensuse153-samba-o3:
617   extends: .samba-o3-template
618   variables:
619     SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_opensuse153}
621 centos7-samba-o3:
622   extends: .samba-o3-template
623   variables:
624     SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_centos7}
625     # Git on CentOS doesn't support shallow git cloning
626     GIT_DEPTH: ""
627     # We need a newer GnuTLS version on CentOS7
628     PKG_CONFIG_PATH: "/usr/lib64/compat-gnutls37/pkgconfig:/usr/lib64/compat-nettle32/pkgconfig"
630 centos8s-samba-o3:
631   extends: .samba-o3-template
632   variables:
633     SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_centos8s}
635 fedora35-samba-o3:
636   extends: .samba-o3-template
637   variables:
638     SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_fedora35}
641 # Keep the samba-o3 sections at the end ...