s4/dsdb/tests/python: PY3 port samba4.ldap.secdesc
[amitay/samba.git] / .gitlab-ci-private.yml
1 include:
2  - '/.gitlab-ci.yml'
3
4
5 .private_template: &private_template
6   stage: build
7   tags:
8     - docker
9     - private
10
11 build_samba:
12   <<: *private_template
13   script:
14     # this one takes about 4 hours to finish
15     - python script/autobuild.py samba            --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
16
17 build_samba_py3:
18   <<: *private_template
19   script:
20     # this one takes about 4 hours to finish
21     - python script/autobuild.py samba-py3        --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
22
23 build_samba_nt4:
24   <<: *private_template
25   script:
26     # this one takes about 1 hours to finish
27     - python script/autobuild.py samba-nt4        --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
28
29 build_samba_nt4_py3:
30   <<: *private_template
31   script:
32     # this one takes about 1 hours to finish
33     - python script/autobuild.py samba-nt4-py3    --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
34
35 build_samba_fileserver:
36   <<: *private_template
37   script:
38     # this one takes about 1 hours to finish
39     - python script/autobuild.py samba-fileserver --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
40
41 build_samba_ad_dc:
42   <<: *private_template
43   script:
44     # this one takes about 1 hours to finish
45     - python script/autobuild.py samba-ad-dc     --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
46
47 build_samba_ad_dc_py3:
48   <<: *private_template
49   script:
50     # this one takes about 1 hours to finish
51     - python script/autobuild.py samba-ad-dc-py3  --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
52