diff options
author | Stefan Metzmacher <metze@samba.org> | 2019-02-11 12:47:29 +0100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2019-02-14 02:18:29 +0100 |
commit | 305db94c581ebc59a8080d0569d14b5cbf123499 (patch) | |
tree | 466c1647a244376e00f25fa00c9e76864d5d5b68 /.gitlab-ci-private.yml | |
parent | 670413f0f1675b6b6dfbfdcd1c6780824376c8a1 (diff) | |
download | samba-305db94c581ebc59a8080d0569d14b5cbf123499.tar.gz |
.gitlab-ci*.yml: remove build_ prefixes
It's useless to see 'builf_samba_ad...' 7 times in the gitlab pipeline summary.
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.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.gitlab-ci-private.yml b/.gitlab-ci-private.yml index ea22eaa044f..7ed13fda8d3 100644 --- a/.gitlab-ci-private.yml +++ b/.gitlab-ci-private.yml @@ -8,38 +8,38 @@ include: - docker - private -build_samba: +samba: <<: *private_template script: # this one takes about 4 hours to finish - script/autobuild.py samba --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase -build_samba_py2: +samba_py2: <<: *private_template script: # this one takes about 4 hours to finish - script/autobuild.py samba-py2 --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase -build_samba_fileserver: +samba_fileserver: <<: *private_template script: # this one takes about 1 hours to finish - script/autobuild.py samba-fileserver --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase -build_samba_ad_dc: +samba_ad_dc: <<: *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 -build_samba_ad_dc_py2: +samba_ad_dc_py2: <<: *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 -build_nt4: +nt4: <<: *private_template script: - script/autobuild.py samba-nt4 --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase |