autobuild: Convert old py3 tasks to py2
[bbaumbach/samba-autobuild/.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     - python3 script/autobuild.py samba            --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
16
17 build_samba_fileserver:
18   <<: *private_template
19   script:
20     # this one takes about 1 hours to finish
21     - python3 script/autobuild.py samba-fileserver --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
22
23 build_samba_ad_dc:
24   <<: *private_template
25   script:
26     # this one takes about 1 hours to finish
27     - python3 script/autobuild.py samba-ad-dc     --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
28