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
2018-04-30 11:31:19 +03:00
.shared_template : &shared_template
2018-03-03 09:51:29 +03:00
stage : build
tags :
2018-03-20 05:07:03 +03:00
- docker
- shared
2018-04-30 11:31:19 +03:00
build_samba_none_env :
<< : *shared_template
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
2018-03-22 05:13:18 +03:00
build_samba_nopython :
2018-04-30 11:31:19 +03:00
<< : *shared_template
2017-09-20 00:33:27 +03:00
script :
- python script/autobuild.py samba-nopython --verbose --tail --testbase /tmp/samba-testbase
2018-03-22 05:13:18 +03:00
build_samba_systemkrb5 :
2018-04-30 11:31:19 +03:00
<< : *shared_template
2018-03-22 05:13:18 +03:00
script :
2017-09-20 00:33:27 +03:00
- python script/autobuild.py samba-systemkrb5 --verbose --tail --testbase /tmp/samba-testbase
2018-03-22 05:13:18 +03:00
build_samba_xc :
2018-04-30 11:31:19 +03:00
<< : *shared_template
2018-03-22 05:13:18 +03:00
script :
2017-09-20 00:33:27 +03:00
- python script/autobuild.py samba-xc --verbose --tail --testbase /tmp/samba-testbase
2018-03-22 05:13:18 +03:00
build_samba_o3 :
2018-04-30 11:31:19 +03:00
<< : *shared_template
2018-03-22 05:13:18 +03:00
script :
2017-09-20 00:33:27 +03:00
- python script/autobuild.py samba-o3 --verbose --tail --testbase /tmp/samba-testbase
2018-03-22 05:13:18 +03:00
2018-04-30 11:38:43 +03:00
build_samba_ad_dc_2 :
<< : *shared_template
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-22 05:13:18 +03:00
build_samba_libs :
2018-04-30 11:31:19 +03:00
<< : *shared_template
2018-03-22 05:13:18 +03:00
script :
2017-09-20 00:33:27 +03:00
- python script/autobuild.py samba-libs --verbose --tail --testbase /tmp/samba-testbase
2018-03-22 05:13:18 +03:00
build_samba_static :
2018-04-30 11:31:19 +03:00
<< : *shared_template
2018-03-22 05:13:18 +03:00
script :
2017-09-20 00:33:27 +03:00
- python script/autobuild.py samba-static --verbose --tail --testbase /tmp/samba-testbase
build_ctdb :
2018-04-30 11:31:19 +03:00
<< : *shared_template
2017-09-20 00:33:27 +03:00
script :
- python script/autobuild.py samba-ctdb --verbose --tail --testbase /tmp/samba-testbase
2018-03-22 05:13:18 +03:00
build_samba_ctdb :
2018-04-30 11:31:19 +03:00
<< : *shared_template
2018-03-22 05:13:18 +03:00
script :
2017-09-20 00:33:27 +03:00
- python script/autobuild.py ctdb --verbose --tail --testbase /tmp/samba-testbase
build_others :
2018-04-30 11:31:19 +03:00
<< : *shared_template
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!"