summaryrefslogtreecommitdiff
path: root/.gitlab-ci-private.yml
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2019-02-11 13:26:22 +0100
committerAndrew Bartlett <abartlet@samba.org>2019-02-14 02:18:29 +0100
commita61e121e1717697210d0f8b62506948c3b86965c (patch)
treefe52ad1c47a09f5a03992699c0aa392719862279 /.gitlab-ci-private.yml
parent305db94c581ebc59a8080d0569d14b5cbf123499 (diff)
downloadsamba-a61e121e1717697210d0f8b62506948c3b86965c.tar.gz
.gitlab-ci*.yml: use 'extends: ' instead of YAML Anchors
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Tim Beale <timbeale@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to '.gitlab-ci-private.yml')
-rw-r--r--.gitlab-ci-private.yml22
1 files changed, 14 insertions, 8 deletions
diff --git a/.gitlab-ci-private.yml b/.gitlab-ci-private.yml
index 7ed13fda8d3..f42ec08b311 100644
--- a/.gitlab-ci-private.yml
+++ b/.gitlab-ci-private.yml
@@ -2,44 +2,50 @@ include:
- '/.gitlab-ci.yml'
-.private_template: &private_template
- stage: build
+.private_template:
+ extends: .shared_template
tags:
- docker
- private
+ before_script:
+ - uname -a
+ - lsb_release -a
+ - mount
+ - df -h
+ - free -h
samba:
- <<: *private_template
+ extends: .private_template
script:
# this one takes about 4 hours to finish
- script/autobuild.py samba --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
samba_py2:
- <<: *private_template
+ extends: .private_template
script:
# this one takes about 4 hours to finish
- script/autobuild.py samba-py2 --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
samba_fileserver:
- <<: *private_template
+ extends: .private_template
script:
# this one takes about 1 hours to finish
- script/autobuild.py samba-fileserver --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
samba_ad_dc:
- <<: *private_template
+ extends: .private_template
script:
# this one takes about 1 hours to finish
- script/autobuild.py samba-ad-dc --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
samba_ad_dc_py2:
- <<: *private_template
+ extends: .private_template
script:
# this one takes about 1 hours to finish
- script/autobuild.py samba-ad-dc-py2 --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
nt4:
- <<: *private_template
+ extends: .private_template
script:
- script/autobuild.py samba-nt4 --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase