From f4fe1c836e492ff15611be05271e9d218ac5fc10 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 22 Mar 2018 15:13:18 +1300 Subject: [PATCH] gitlab-ci: Split up build_samba_others and build_ctdb tasks These make too much output and the shared runners on GitLab CI object to sending more than 4MB of output. Signed-off-by: Andrew Bartlett Reviewed-by: Gary Lockyer --- .gitlab-ci.yml | 44 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 43 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9c52057971c..cde8341d0f7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -68,17 +68,52 @@ build_samba_none_env: # this one takes about 1 hours to finish - python script/autobuild.py samba-none-env --verbose --tail --testbase /tmp/samba-testbase -build_samba_others: +build_samba_nopython: stage: build tags: - docker - shared script: - python script/autobuild.py samba-nopython --verbose --tail --testbase /tmp/samba-testbase + +build_samba_systemkrb5: + stage: build + tags: + - docker + - shared + script: - python script/autobuild.py samba-systemkrb5 --verbose --tail --testbase /tmp/samba-testbase + +build_samba_xc: + stage: build + tags: + - docker + - shared + script: - python script/autobuild.py samba-xc --verbose --tail --testbase /tmp/samba-testbase + +build_samba_o3: + stage: build + tags: + - docker + - shared + script: - python script/autobuild.py samba-o3 --verbose --tail --testbase /tmp/samba-testbase + +build_samba_libs: + stage: build + tags: + - docker + - shared + script: - python script/autobuild.py samba-libs --verbose --tail --testbase /tmp/samba-testbase + +build_samba_static: + stage: build + tags: + - docker + - shared + script: - python script/autobuild.py samba-static --verbose --tail --testbase /tmp/samba-testbase build_ctdb: @@ -88,6 +123,13 @@ build_ctdb: - shared script: - python script/autobuild.py samba-ctdb --verbose --tail --testbase /tmp/samba-testbase + +build_samba_ctdb: + stage: build + tags: + - docker + - shared + script: - python script/autobuild.py ctdb --verbose --tail --testbase /tmp/samba-testbase build_others: -- 2.34.1