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
2017-12-12 04:26:07 +03:00
variables :
2018-11-20 10:15:02 +03:00
SAMBA_BUILD_IMAGES_PROJECT : samba-team/samba
SAMBA_BUILD : latest
2017-12-12 04:26:07 +03:00
GIT_STRATEGY : fetch
GIT_DEPTH : "3"
2018-04-30 11:31:19 +03:00
.shared_template : &shared_template
2018-11-20 10:15:02 +03:00
image : $CI_REGISTRY/$SAMBA_BUILD_IMAGES_PROJECT:$SAMBA_BUILD
2018-03-03 09:51:29 +03:00
stage : build
tags :
2018-03-20 05:07:03 +03:00
- docker
- shared
2018-11-20 10:16:42 +03:00
before_script :
- 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
2018-11-20 10:17:37 +03:00
artifacts :
expire_in : 1 week
when : on_failure
paths :
- "*.stdout"
- "*.stderr"
- system-info.txt
- /tmp/samba-testbase/*/*/bin/config.log
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
2018-12-10 10:36:15 +03:00
- script/autobuild.py samba-none-env --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
2018-03-03 09:51:29 +03:00
2018-11-30 00:28:11 +03:00
build_samba_none_env_py2 :
<< : *shared_template
script :
# this one takes about 1 hours to finish
- script/autobuild.py samba-none-env-py2 --verbose --nocleanup --keeplogs --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 :
2018-12-10 10:36:15 +03:00
- script/autobuild.py samba-nopython --verbose --nocleanup --keeplogs --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 :
2018-12-10 10:36:15 +03:00
- script/autobuild.py samba-systemkrb5 --verbose --nocleanup --keeplogs --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 :
2018-12-10 10:36:15 +03:00
- script/autobuild.py samba-xc --verbose --nocleanup --keeplogs --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 :
2018-12-10 10:36:15 +03:00
- script/autobuild.py samba-o3 --verbose --nocleanup --keeplogs --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
2018-12-10 10:36:15 +03:00
- script/autobuild.py samba-ad-dc-2 --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
2019-02-05 05:17:03 +03:00
build_samba_ad_dc_backup :
<< : *shared_template
script :
- script/autobuild.py samba-ad-dc-backup --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
2018-04-30 11:38:43 +03:00
2018-11-30 00:28:11 +03:00
build_samba_ad_dc_2_py2 :
<< : *shared_template
script :
# this one takes about 1 hours to finish
- script/autobuild.py samba-ad-dc-2-py2 --verbose --nocleanup --keeplogs --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 :
2018-12-10 10:36:15 +03:00
- script/autobuild.py samba-libs --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
2018-03-22 05:13:18 +03:00
2018-11-30 00:28:11 +03:00
build_samba_libs_py2 :
<< : *shared_template
script :
2018-12-10 10:36:15 +03:00
- script/autobuild.py samba-libs-py2 --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
2018-11-30 00:28:11 +03:00
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 :
2018-12-10 10:36:15 +03:00
- script/autobuild.py samba-static --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
2017-09-20 00:33:27 +03:00
build_ctdb :
2018-04-30 11:31:19 +03:00
<< : *shared_template
2017-09-20 00:33:27 +03:00
script :
2018-12-10 10:36:15 +03:00
- script/autobuild.py ctdb --verbose --nocleanup --keeplogs --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 :
2018-12-10 10:36:15 +03:00
- script/autobuild.py samba-ctdb --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
2017-09-20 00:33:27 +03:00
build_others :
2018-04-30 11:31:19 +03:00
<< : *shared_template
2017-09-20 00:33:27 +03:00
script :
2018-12-10 10:36:15 +03:00
- script/autobuild.py ldb --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
- script/autobuild.py pidl --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
- script/autobuild.py replace --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
- script/autobuild.py talloc --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
- script/autobuild.py tdb --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
- script/autobuild.py tevent --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
2017-09-20 00:33:27 +03:00
2018-11-29 18:10:40 +03:00
build_samba_buildpy2_only :
2018-09-27 12:22:44 +03:00
<< : *shared_template
script :
2018-11-29 18:10:40 +03:00
- python script/autobuild.py samba-buildpy2-only --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
2018-10-16 21:39:41 +03:00
2019-01-23 11:43:33 +03:00
build_samba_ad_dc_ntvfs :
<< : *shared_template
script :
# this one takes about 100 mins to finish
- script/autobuild.py samba-ad-dc-ntvfs --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
build_samba_ad_dc_ntvfs_py2 :
<< : *shared_template
script :
- script/autobuild.py samba-ad-dc-ntvfs-py2 --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase