2017-09-20 00:33:27 +03:00
# see https://docs.gitlab.com/ce/ci/yaml/README.html for all available options
2017-11-28 00:20:54 +03:00
image : registry.gitlab.com/samba-team/samba:latest
2017-12-12 04:26:07 +03:00
variables :
GIT_STRATEGY : fetch
GIT_DEPTH : "3"
2017-09-20 00:33:27 +03:00
before_script :
2018-03-20 04:15:47 +03:00
- echo "Build starting (preparing swap)..."
- if [ $(df -m / --output=avail | tail -n1) -gt 10240 ]; then
sudo dd if=/dev/zero of=/samba-swap bs=1M count=6144;
sudo mkswap /samba-swap;
sudo swapon /samba-swap;
fi
2017-09-20 00:33:27 +03:00
build_samba :
stage : build
tags :
2017-11-28 00:20:54 +03:00
- docker
2018-03-20 05:07:03 +03:00
- private
2017-09-20 00:33:27 +03:00
script :
# this one takes about 4 hours to finish
- python script/autobuild.py samba --verbose --tail --testbase /tmp/samba-testbase
2017-12-05 01:34:08 +03:00
build_samba_nt4 :
stage : build
tags :
2018-03-20 05:07:03 +03:00
- docker
- private
2017-12-05 01:34:08 +03:00
script :
# this one takes about 1 hours to finish
- python script/autobuild.py samba-nt4 --verbose --tail --testbase /tmp/samba-testbase
2018-03-04 11:32:09 +03:00
build_samba_fileserver :
stage : build
tags :
2018-03-20 05:07:03 +03:00
- docker
- shared
2018-03-04 11:32:09 +03:00
script :
# this one takes about 1 hours to finish
- python script/autobuild.py samba-fileserver --verbose --tail --testbase /tmp/samba-testbase
2017-12-05 01:34:08 +03:00
2017-06-30 02:13:55 +03:00
build_samba_ad_dc :
stage : build
tags :
2018-03-20 05:07:03 +03:00
- docker
- private
2017-06-30 02:13:55 +03:00
script :
# this one takes about 1 hours to finish
- python script/autobuild.py samba-ad-dc --verbose --tail --testbase /tmp/samba-testbase
2018-03-20 21:02:42 +03:00
build_samba_ad_dc_2 :
stage : build
tags :
- docker
- private
script :
# this one takes about 1 hours to finish
- python script/autobuild.py samba-ad-dc-2 --verbose --tail --testbase /tmp/samba-testbase
2018-03-03 09:51:29 +03:00
build_samba_none_env :
stage : build
tags :
2018-03-20 05:07:03 +03:00
- docker
- shared
2018-03-03 09:51:29 +03:00
script :
# this one takes about 1 hours to finish
- python script/autobuild.py samba-none-env --verbose --tail --testbase /tmp/samba-testbase
2017-09-20 00:33:27 +03:00
build_samba_others :
stage : build
tags :
2017-11-28 00:20:54 +03:00
- docker
2018-03-20 05:07:03 +03:00
- shared
2017-09-20 00:33:27 +03:00
script :
- python script/autobuild.py samba-nopython --verbose --tail --testbase /tmp/samba-testbase
- python script/autobuild.py samba-systemkrb5 --verbose --tail --testbase /tmp/samba-testbase
- python script/autobuild.py samba-xc --verbose --tail --testbase /tmp/samba-testbase
- python script/autobuild.py samba-o3 --verbose --tail --testbase /tmp/samba-testbase
- python script/autobuild.py samba-libs --verbose --tail --testbase /tmp/samba-testbase
- python script/autobuild.py samba-static --verbose --tail --testbase /tmp/samba-testbase
build_ctdb :
stage : build
tags :
2017-11-28 00:20:54 +03:00
- docker
2018-03-20 05:07:03 +03:00
- shared
2017-09-20 00:33:27 +03:00
script :
- python script/autobuild.py samba-ctdb --verbose --tail --testbase /tmp/samba-testbase
- python script/autobuild.py ctdb --verbose --tail --testbase /tmp/samba-testbase
build_others :
stage : build
tags :
2017-11-28 00:20:54 +03:00
- docker
2018-03-20 05:07:03 +03:00
- shared
2017-09-20 00:33:27 +03:00
script :
- python script/autobuild.py ldb --verbose --tail --testbase /tmp/samba-testbase
- python script/autobuild.py pidl --verbose --tail --testbase /tmp/samba-testbase
- python script/autobuild.py replace --verbose --tail --testbase /tmp/samba-testbase
- python script/autobuild.py talloc --verbose --tail --testbase /tmp/samba-testbase
- python script/autobuild.py tdb --verbose --tail --testbase /tmp/samba-testbase
- python script/autobuild.py tevent --verbose --tail --testbase /tmp/samba-testbase
after_script :
- echo "Build finished!"