mirror of
https://github.com/samba-team/samba.git
synced 2025-02-26 21:57:41 +03:00
Samba v4.11 will no longer support python2, so let's drop the autobuild jobs. This will save some gitlab/sn-devel time and money, as it's less work for CI to do. Note that this highlights some previous inconsistencies: - samba-none-env-py2 was being built for gitlab but not sn-devel. - samba-nt4-py2 was being built for sn-devel but not gitlab I've left samba-buildpy2-only for now, which will be addressed in a subsequent patch. Signed-off-by: Tim Beale <timbeale@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
31 lines
503 B
YAML
31 lines
503 B
YAML
include:
|
|
- '/.gitlab-ci.yml'
|
|
|
|
|
|
.private_template:
|
|
extends: .shared_template
|
|
tags:
|
|
- docker
|
|
- private
|
|
before_script:
|
|
- uname -a
|
|
- lsb_release -a
|
|
- mount
|
|
- df -h
|
|
- free -h
|
|
|
|
samba:
|
|
extends: .private_template
|
|
# this one takes about 4 hours to finish
|
|
|
|
samba-fileserver:
|
|
extends: .private_template
|
|
# this one takes about 1 hours to finish
|
|
|
|
samba-ad-dc:
|
|
extends: .private_template
|
|
# this one takes about 1 hours to finish
|
|
|
|
samba-nt4:
|
|
extends: .private_template
|