summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2018-03-22 15:13:18 +1300
committerAndrew Bartlett <abartlet@samba.org>2018-03-27 23:03:14 +0200
commitf4fe1c836e492ff15611be05271e9d218ac5fc10 (patch)
treef95a799c45889849c603650e5fd76092b7ab836e /.gitlab-ci.yml
parent106793a42c4cc3d6209190ffa2da7190a247c1be (diff)
downloadsamba-f4fe1c836e492ff15611be05271e9d218ac5fc10.tar.gz
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 <abartlet@samba.org> Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml44
1 files changed, 43 insertions, 1 deletions
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: