smbd: Fix DELETE_ON_CLOSE behaviour on files with READ_ONLY attribute
[samba.git] / .gitlab-ci.yml
blobec1c3625f2b2cd326145cc71e1c4e30c2ca4de45
1 # see https://docs.gitlab.com/ce/ci/yaml/README.html for all available options
3 image: registry.gitlab.com/samba-team/samba:latest
5 variables:
6   GIT_STRATEGY: fetch
7   GIT_DEPTH: "3"
9 before_script:
10   - echo "Build starting (preparing swap)..."
11   - if [ $(df -m / --output=avail | tail -n1) -gt 10240 ]; then
12       sudo dd if=/dev/zero of=/samba-swap bs=1M count=6144;
13       sudo mkswap /samba-swap;
14       sudo swapon /samba-swap;
15     fi
17 after_script:
18   - tar -xf logs.tar.gz system-info.txt -O
20 .shared_template: &shared_template
21   stage: build
22   tags:
23     - docker
24     - shared
26 build_samba_none_env:
27   <<: *shared_template
28   script:
29     # this one takes about 1 hours to finish
30     - python script/autobuild.py samba-none-env    --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
32 build_samba_nopython:
33   <<: *shared_template
34   script:
35     - python script/autobuild.py samba-nopython   --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
37 build_samba_systemkrb5:
38   <<: *shared_template
39   script:
40     - python script/autobuild.py samba-systemkrb5 --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
42 build_samba_xc:
43   <<: *shared_template
44   script:
45     - python script/autobuild.py samba-xc         --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
47 build_samba_o3:
48   <<: *shared_template
49   script:
50     - python script/autobuild.py samba-o3         --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
52 build_samba_ad_dc_2:
53   <<: *shared_template
54   script:
55     # this one takes about 1 hours to finish
56     - python script/autobuild.py samba-ad-dc-2     --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
58 build_samba_ad_dc_2_py3:
59   <<: *shared_template
60   script:
61     # this one takes about 1 hours to finish
62     - python script/autobuild.py samba-ad-dc-2-py3 --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
64 build_samba_libs:
65   <<: *shared_template
66   script:
67     - python script/autobuild.py samba-libs       --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
69 build_samba_libs_py3:
70   <<: *shared_template
71   script:
72     - python script/autobuild.py samba-libs-py3   --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
74 build_samba_static:
75   <<: *shared_template
76   script:
77     - python script/autobuild.py samba-static     --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
79 build_ctdb:
80   <<: *shared_template
81   script:
82     - python script/autobuild.py ctdb       --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
84 build_samba_ctdb:
85   <<: *shared_template
86   script:
87     - python script/autobuild.py samba-ctdb             --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
89 build_others:
90   <<: *shared_template
91   script:
92     - python script/autobuild.py ldb              --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
93     - python script/autobuild.py pidl             --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
94     - python script/autobuild.py replace          --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
95     - python script/autobuild.py talloc           --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
96     - python script/autobuild.py tdb              --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
97     - python script/autobuild.py tevent           --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
99 build_samba_buildpy3_only:
100   <<: *shared_template
101   script:
102     - python3 script/autobuild.py samba-buildpy3-only             --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
104 build_samba_purepy3-none_env:
105   <<: *shared_template
106   script:
107     - python3 script/autobuild.py samba-purepy3-none-env           --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase