2 # run tests on all Samba subprojects and push to a git tree on success
3 # Copyright Andrew Tridgell 2010
4 # released under GNU GPL v3 or later
6 from subprocess
import call
, check_call
, check_output
, Popen
, PIPE
, CalledProcessError
12 from optparse
import OptionParser
15 from email
.mime
.text
import MIMEText
16 from email
.mime
.base
import MIMEBase
17 from email
.mime
.application
import MIMEApplication
18 from email
.mime
.multipart
import MIMEMultipart
19 from distutils
.sysconfig
import get_python_lib
23 from waflib
.Build
import CACHE_SUFFIX
25 sys
.path
.insert(0, "./third_party/waf")
26 from waflib
.Build
import CACHE_SUFFIX
29 os
.environ
["PYTHONUNBUFFERED"] = "1"
31 # This speeds up testing remarkably.
32 os
.environ
['TDB_NO_FSYNC'] = '1'
34 # allow autobuild to run within git rebase -i
35 if "GIT_DIR" in os
.environ
:
36 del os
.environ
["GIT_DIR"]
37 if "GIT_WORK_TREE" in os
.environ
:
38 del os
.environ
["GIT_WORK_TREE"]
41 '''get to the top of the git repo'''
44 if os
.path
.exists(os
.path
.join(p
, ".git")):
46 p
= os
.path
.abspath(os
.path
.join(p
, '..'))
50 gitroot
= find_git_root()
52 raise Exception("Failed to find git root")
55 def_testbase
= os
.getenv("AUTOBUILD_TESTBASE", "/memdisk/%s" % os
.getenv('USER'))
57 parser
= OptionParser()
58 parser
.add_option("--tail", help="show output while running", default
=False, action
="store_true")
59 parser
.add_option("--keeplogs", help="keep logs", default
=False, action
="store_true")
60 parser
.add_option("--nocleanup", help="don't remove test tree", default
=False, action
="store_true")
61 parser
.add_option("--skip-dependencies", help="skip to run task dependency tasks", default
=False, action
="store_true")
62 parser
.add_option("--testbase", help="base directory to run tests in (default %s)" % def_testbase
,
64 parser
.add_option("--full-testbase", help="full base directory to run tests in (default %s/b$PID)" % def_testbase
,
66 parser
.add_option("--passcmd", help="command to run on success", default
=None)
67 parser
.add_option("--verbose", help="show all commands as they are run",
68 default
=False, action
="store_true")
69 parser
.add_option("--rebase", help="rebase on the given tree before testing",
70 default
=None, type='str')
71 parser
.add_option("--pushto", help="push to a git url on success",
72 default
=None, type='str')
73 parser
.add_option("--mark", help="add a Tested-By signoff before pushing",
74 default
=False, action
="store_true")
75 parser
.add_option("--fix-whitespace", help="fix whitespace on rebase",
76 default
=False, action
="store_true")
77 parser
.add_option("--retry", help="automatically retry if master changes",
78 default
=False, action
="store_true")
79 parser
.add_option("--email", help="send email to the given address on failure",
80 type='str', default
=None)
81 parser
.add_option("--email-from", help="send email from the given address",
82 type='str', default
="autobuild@samba.org")
83 parser
.add_option("--email-server", help="send email via the given server",
84 type='str', default
='localhost')
85 parser
.add_option("--always-email", help="always send email, even on success",
87 parser
.add_option("--daemon", help="daemonize after initial setup",
89 parser
.add_option("--branch", help="the branch to work on (default=master)",
90 default
="master", type='str')
91 parser
.add_option("--log-base", help="location where the logs can be found (default=cwd)",
92 default
=gitroot
, type='str')
93 parser
.add_option("--attach-logs", help="Attach logs to mails sent on success/failure?",
94 default
=False, action
="store_true")
95 parser
.add_option("--restrict-tests", help="run as make test with this TESTS= regex",
97 parser
.add_option("--enable-coverage", dest
='enable_coverage',
98 action
="store_const", const
='--enable-coverage', default
='',
99 help="Add --enable-coverage option while configure")
101 (options
, args
) = parser
.parse_args()
104 if options
.rebase
is None:
105 raise Exception('You can only use --retry if you also rebase')
107 if options
.full_testbase
is not None:
108 testbase
= options
.full_testbase
110 testbase
= "%s/b%u" % (options
.testbase
, os
.getpid())
111 test_master
= "%s/master" % testbase
112 test_prefix
= "%s/prefix" % testbase
113 test_tmpdir
= "%s/tmp" % testbase
114 os
.environ
['TMPDIR'] = test_tmpdir
116 if options
.enable_coverage
:
117 LCOV_CMD
= "cd ${TEST_SOURCE_DIR} && lcov --capture --directory . --output-file ${LOG_BASE}/${NAME}.info --rc 'geninfo_adjust_src_path=${TEST_SOURCE_DIR}/'"
119 LCOV_CMD
= 'echo "lcov skipped since no --enable-coverage specified"'
121 if options
.enable_coverage
:
122 PUBLISH_DOCS
= "mkdir -p ${LOG_BASE}/public && mv output/htmldocs ${LOG_BASE}/public/htmldocs"
124 PUBLISH_DOCS
= 'echo "HTML documentation publishing skipped since no --enable-coverage specified"'
126 CLEAN_SOURCE_TREE_CMD
= "cd ${TEST_SOURCE_DIR} && script/clean-source-tree.sh"
129 def check_symbols(sofile
, expected_symbols
=""):
130 return "objdump --dynamic-syms " + sofile
+ " | " + \
131 "awk \'$0 !~ /" + expected_symbols
+ "/ {if ($2 == \"g\" && $3 ~ /D(F|O)/ && $4 ~ /(.bss|.text)/ && $7 !~ /(__gcov_|mangle_path)/) exit 1}\'"
134 # If we are only running specific test,
135 # do not sleep randomly to wait for it to start
136 def random_sleep(low
, high
):
139 def random_sleep(low
, high
):
140 return 'sleep {}'.format(random
.randint(low
, high
))
148 "talloc": "lib/talloc",
149 "replace": "lib/replace",
150 "tevent": "lib/tevent",
152 "docs-xml": "docs-xml"
155 ctdb_configure_params
= " --enable-developer ${PREFIX}"
156 samba_configure_params
= " ${ENABLE_COVERAGE} ${PREFIX} --with-profiling-data"
158 samba_libs_envvars
= "PYTHONPATH=${PYTHON_PREFIX}:$PYTHONPATH"
159 samba_libs_envvars
+= " PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${PREFIX_DIR}/lib/pkgconfig"
160 samba_libs_envvars
+= " ADDITIONAL_CFLAGS='-Wmissing-prototypes'"
161 samba_libs_configure_base
= samba_libs_envvars
+ " ./configure --abi-check ${ENABLE_COVERAGE} --enable-debug -C ${PREFIX}"
162 samba_libs_configure_libs
= samba_libs_configure_base
+ " --bundled-libraries=cmocka,popt,NONE"
163 samba_libs_configure_bundled_libs
= " --bundled-libraries=!talloc,!pytalloc-util,!tdb,!pytdb,!ldb,!pyldb,!pyldb-util,!tevent,!pytevent,!popt"
164 samba_libs_configure_samba
= samba_libs_configure_base
+ samba_libs_configure_bundled_libs
167 def format_option(name
, value
=None):
168 """Format option as str list."""
169 if value
is None: # boolean option
171 if not isinstance(value
, list): # single value option
174 return ['{}={}'.format(name
, item
) for item
in value
]
179 INJECT_SELFTEST_PREFIX
=1,
186 test_options
= format_option('--include-env', include_envs
)
188 test_options
= format_option('--exclude-env', exclude_envs
)
190 # join envs options to original test options
191 TESTS
= (TESTS
+ ' ' + ' '.join(test_options
)).strip()
195 # Allow getting a full CI with
196 # git push -o ci.variable='AUTOBUILD_FAIL_IMMEDIATELY=0'
198 FAIL_IMMEDIATELY
= os
.getenv("AUTOBUILD_FAIL_IMMEDIATELY", "1")
200 if int(FAIL_IMMEDIATELY
):
201 _options
.append('FAIL_IMMEDIATELY=1')
203 _options
.append("TESTS='{}'".format(TESTS
))
205 if INJECT_SELFTEST_PREFIX
:
206 _options
.append("TEST_OPTIONS='--with-selftest-prefix={}'".format("${SELFTEST_PREFIX}"))
207 _options
.append("--directory='{}'".format("${TEST_SOURCE_DIR}"))
209 return ' '.join([cmd
] + _options
)
212 # When updating this list, also update .gitlab-ci.yml to add the job
213 # and to make it a dependency of 'page' for the coverage report.
218 ("random-sleep", random_sleep(300, 900)),
219 ("configure", "./configure " + ctdb_configure_params
),
220 ("make", "make all"),
221 ("install", "make install"),
222 ("test", "make autotest"),
223 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
224 ("clean", "make clean"),
229 ("random-sleep", random_sleep(300, 900)),
230 ("autoconf", "autoconf"),
231 ("configure", "./configure"),
232 ("make", "make html htmlman"),
233 ("publish-docs", PUBLISH_DOCS
),
234 ("clean", "make clean"),
239 "git-clone-required": True,
241 ("configure", "./configure.developer" + samba_configure_params
),
243 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
244 ("chmod-R-a-w", "chmod -R a-w ."),
249 "git-clone-required": True,
251 ("configure", "./configure.developer --with-system-mitkrb5 --with-experimental-mit-ad-dc" + samba_configure_params
),
253 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
254 ("chmod-R-a-w", "chmod -R a-w ."),
259 "git-clone-required": True,
261 ("configure", "./configure.developer --without-ad-dc --without-ldap --without-ads --without-json" + samba_configure_params
),
263 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
264 ("chmod-R-a-w", "chmod -R a-w ."),
269 "git-clone-required": True,
271 ("configure", "./configure.developer --without-ad-dc --with-system-heimdalkrb5" + samba_configure_params
),
273 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
274 ("chmod-R-a-w", "chmod -R a-w ."),
278 "samba-without-smb1-build": {
279 "git-clone-required": True,
281 ("configure", "./configure.developer --without-smb1-server --without-ad-dc" + samba_configure_params
),
283 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
284 ("chmod-R-a-w", "chmod -R a-w ."),
288 "samba-no-opath-build": {
289 "git-clone-required": True,
291 ("configure", "ADDITIONAL_CFLAGS='-DDISABLE_OPATH=1' ./configure.developer --without-ad-dc " + samba_configure_params
),
293 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
294 ("chmod-R-a-w", "chmod -R a-w ."),
298 # We have 'test' before 'install' because, 'test' should work without 'install (runs all the other envs)'
301 ("random-sleep", random_sleep(300, 900)),
302 ("configure", "./configure.developer" + samba_configure_params
),
304 ("test", make_test(exclude_envs
=[
317 "ad_dc_default_smb1",
325 "ad_member_idmap_rid",
326 "admem_idmap_autorid",
327 "ad_member_idmap_ad",
335 "fileserver_smb1_done",
349 "ad_dc_default_smb1",
350 "ad_dc_default_smb1_done",
358 ("test-slow-none", make_test(cmd
='make test', TESTS
="--include=selftest/slow-none", include_envs
=["none"])),
360 ("install", "make install"),
361 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
362 ("clean", "make clean"),
366 # We have 'test' before 'install' because, 'test' should work without 'install (runs all the other envs)'
369 ("random-sleep", random_sleep(300, 900)),
370 ("configure", "./configure.developer --with-system-mitkrb5 --with-experimental-mit-ad-dc" + samba_configure_params
),
372 ("test", make_test(exclude_envs
=[
385 "ad_dc_default_smb1",
386 "ad_dc_default_smb1_done",
394 "ad_member_idmap_rid",
395 "admem_idmap_autorid",
396 "ad_member_idmap_ad",
404 "fileserver_smb1_done",
418 "ad_dc_default_smb1",
419 "ad_dc_default_smb1_done",
428 ("install", "make install"),
429 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
430 ("clean", "make clean"),
435 "dependency": "samba-nt4-build",
437 ("random-sleep", random_sleep(300, 900)),
438 ("test", make_test(include_envs
=[
447 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
451 "samba-fileserver": {
452 "dependency": "samba-h5l-build",
454 ("random-sleep", random_sleep(300, 900)),
455 ("test", make_test(include_envs
=[
458 "fileserver_smb1_done",
460 "ktest", # ktest is also tested in samba-ktest-mit samba
461 # and samba-mitkrb5 but is tested here against
465 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
469 "samba-fileserver-without-smb1": {
470 "dependency": "samba-without-smb1-build",
472 ("random-sleep", random_sleep(300, 900)),
473 ("test", make_test(include_envs
=["fileserver"])),
475 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
479 # This is a full build without the AD DC so we test the build with
480 # MIT Kerberos from the current system. Runtime behaviour is
481 # confirmed via the ktest (static ccache and keytab) environment
483 # This environment also used to confirm we can still build with --with-libunwind
486 ("random-sleep", random_sleep(300, 900)),
487 ("configure", "./configure.developer --without-ad-dc --with-libunwind --with-system-mitkrb5 " + samba_configure_params
),
489 ("test", make_test(include_envs
=[
490 "ktest", # ktest is also tested in fileserver, samba and
491 # samba-mitkrb5 but is tested here against a
495 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
500 "dependency": "samba-def-build",
502 ("random-sleep", random_sleep(300, 900)),
503 ("test", make_test(include_envs
=[
505 "ad_member_idmap_rid",
506 "admem_idmap_autorid",
507 "ad_member_idmap_ad",
509 "ad_member_offlogon",
512 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
517 "dependency": "samba-no-opath-build",
519 ("random-sleep", random_sleep(300, 900)),
521 cmd
="make testonly DISABLE_OPATH=1",
531 ("check-clean-tree", "script/clean-source-tree.sh"),
536 "dependency": "samba-no-opath-build",
538 ("random-sleep", random_sleep(300, 900)),
540 cmd
="make testonly DISABLE_OPATH=1",
544 "fileserver_smb1_done",
547 ("check-clean-tree", "script/clean-source-tree.sh"),
552 "dependency": "samba-def-build",
554 ("random-sleep", random_sleep(1, 1)),
555 ("test", make_test(include_envs
=[
563 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
568 "dependency": "samba-def-build",
570 ("random-sleep", random_sleep(1, 1)),
571 ("test", make_test(include_envs
=[
577 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
582 "dependency": "samba-def-build",
584 ("random-sleep", random_sleep(1, 1)),
585 ("test", make_test(include_envs
=[
592 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
597 "dependency": "samba-def-build",
599 ("random-sleep", random_sleep(1, 1)),
600 ("test", make_test(include_envs
=[
606 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
610 "dependency": "samba-def-build",
612 ("random-sleep", random_sleep(1, 1)),
613 ("test", make_test(include_envs
=[
618 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
623 "dependency": "samba-def-build",
625 ("random-sleep", random_sleep(1, 1)),
626 ("test", make_test(include_envs
=[
627 "ad_dc_default", "ad_dc_default_smb1", "ad_dc_default_smb1_done"])),
629 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
634 "dependency": "samba-def-build",
636 ("random-sleep", random_sleep(1, 1)),
637 ("test", make_test(include_envs
=["ad_dc_slowtests", "ad_dc_backup"])),
639 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
643 "samba-schemaupgrade": {
644 "dependency": "samba-def-build",
646 ("random-sleep", random_sleep(1, 1)),
647 ("test", make_test(include_envs
=["schema_dc", "schema_pair_dc"])),
649 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
653 # We split out the ad_dc_ntvfs tests (which are long) so other test do not wait
654 # This is currently the longest task, so we don't randomly delay it.
655 "samba-ad-dc-ntvfs": {
656 "dependency": "samba-def-build",
658 ("random-sleep", random_sleep(1, 1)),
659 ("test", make_test(include_envs
=["ad_dc_ntvfs"])),
661 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
665 # Test fips compliance
667 "dependency": "samba-mit-build",
669 ("random-sleep", random_sleep(1, 1)),
670 ("test", make_test(include_envs
=["ad_dc_fips", "ad_member_fips"])),
671 # TODO: This seems to generate only an empty samba-fips.info ("lcov", LCOV_CMD),
672 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
676 # run the backup/restore testenvs separately as they're fairly standalone
677 # (and CI seems to max out at ~3 different DCs running at once)
679 "dependency": "samba-def-build",
681 ("random-sleep", random_sleep(300, 900)),
682 ("test", make_test(include_envs
=[
688 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
692 "dependency": "samba-def-build",
694 ("random-sleep", random_sleep(300, 900)),
695 ("test", make_test(include_envs
=[
701 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
706 "dependency": "samba-mit-build",
708 ("random-sleep", random_sleep(1, 1)),
709 ("test", make_test(include_envs
=[
711 "ad_member_idmap_rid",
712 "admem_idmap_autorid",
713 "ad_member_idmap_ad",
715 "ad_member_offlogon",
718 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
722 "samba-addc-mit-1": {
723 "dependency": "samba-mit-build",
725 ("random-sleep", random_sleep(1, 1)),
726 ("test", make_test(include_envs
=[
734 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
738 "samba-addc-mit-4a": {
739 "dependency": "samba-mit-build",
741 ("random-sleep", random_sleep(1, 1)),
742 ("test", make_test(include_envs
=[
748 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
751 "samba-addc-mit-4b": {
752 "dependency": "samba-mit-build",
754 ("random-sleep", random_sleep(1, 1)),
755 ("test", make_test(include_envs
=[
760 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
766 ("configure", "./configure.developer --abi-check-disable" + samba_configure_params
),
768 ("test", make_test(TESTS
="${TESTS}")),
773 # Test cross-compile infrastructure
776 ("random-sleep", random_sleep(900, 1500)),
777 ("configure-native", "./configure.developer --with-selftest-prefix=./bin/ab" + samba_configure_params
),
778 ("configure-cross-execute", "./configure.developer --out ./bin-xe --cross-compile --cross-execute=script/identity_cc.sh" \
779 " --cross-answers=./bin-xe/cross-answers.txt --with-selftest-prefix=./bin-xe/ab" + samba_configure_params
),
780 ("verify-cross-execute-output", "grep '^Checking value of NSIG' ./bin-xe/cross-answers.txt"),
781 ("configure-cross-answers", "./configure.developer --out ./bin-xa --cross-compile" \
782 " --cross-answers=./bin-xe/cross-answers.txt --with-selftest-prefix=./bin-xa/ab" + samba_configure_params
),
783 ("compare-results", "script/compare_cc_results.py "
784 "./bin/c4che/default{} "
785 "./bin-xe/c4che/default{} "
786 "./bin-xa/c4che/default{}".format(*([CACHE_SUFFIX
]*3))),
787 ("modify-cross-answers", "sed -i.bak -e 's/^\\(Checking value of NSIG:\\) .*/\\1 \"1234\"/' ./bin-xe/cross-answers.txt"),
788 ("configure-cross-answers-modified", "./configure.developer --out ./bin-xa2 --cross-compile" \
789 " --cross-answers=./bin-xe/cross-answers.txt --with-selftest-prefix=./bin-xa2/ab" + samba_configure_params
),
790 ("verify-cross-answers", "test $(sed -n -e 's/VALUEOF_NSIG = \\(.*\\)/\\1/p' ./bin-xa2/c4che/default{})" \
791 " = \"'1234'\"".format(CACHE_SUFFIX
)),
792 ("invalidate-cross-answers", "sed -i.bak -e '/^Checking value of NSIG/d' ./bin-xe/cross-answers.txt"),
793 ("configure-cross-answers-fail", "./configure.developer --out ./bin-xa3 --cross-compile" \
794 " --cross-answers=./bin-xe/cross-answers.txt --with-selftest-prefix=./bin-xa3/ab" + samba_configure_params
+ \
799 # test build with -O3 -- catches extra warnings and bugs, tests the ad_dc environments
802 ("random-sleep", random_sleep(300, 900)),
803 ("configure", "ADDITIONAL_CFLAGS='-O3 -Wp,-D_FORTIFY_SOURCE=2' ./configure.developer --abi-check-disable" + samba_configure_params
),
805 ("test", make_test(cmd
='make test', TESTS
="--exclude=selftest/slow-none", include_envs
=["none"])),
806 ("quicktest", make_test(cmd
='make quicktest', include_envs
=["ad_dc", "ad_dc_smb1", "ad_dc_smb1_done"])),
808 ("install", "make install"),
809 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
810 ("clean", "make clean"),
816 ("random-sleep", random_sleep(900, 1500)),
818 # make sure we have tdb around:
819 ("tdb-configure", "cd lib/tdb && PYTHONPATH=${PYTHON_PREFIX}:$PYTHONPATH PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${PREFIX_DIR}/lib/pkgconfig ./configure --bundled-libraries=NONE --abi-check --enable-debug -C ${PREFIX}"),
820 ("tdb-make", "cd lib/tdb && make"),
821 ("tdb-install", "cd lib/tdb && make install"),
823 # build samba with cluster support (also building ctdb):
825 "PYTHONPATH=${PYTHON_PREFIX}:$PYTHONPATH "
826 "PKG_CONFIG_PATH=${PREFIX_DIR}/lib/pkgconfig:${PKG_CONFIG_PATH} "
827 "./configure.developer ${PREFIX} "
828 "--with-selftest-prefix=./bin/ab "
829 "--with-cluster-support "
831 "--bundled-libraries=!tdb"),
832 ("samba-make", "make"),
833 ("samba-check", "./bin/smbd --configfile=/dev/null -b | grep CLUSTER_SUPPORT"),
834 ("samba-install", "make install"),
835 ("ctdb-check", "test -e ${PREFIX_DIR}/sbin/ctdbd"),
839 INJECT_SELFTEST_PREFIX
=0,
840 include_envs
=["clusteredmember"])
844 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
845 ("clean", "make clean"),
846 ("ctdb-clean", "cd ./ctdb && make clean"),
852 ("random-sleep", random_sleep(300, 900)),
853 ("talloc-configure", "cd lib/talloc && " + samba_libs_configure_libs
),
854 ("talloc-make", "cd lib/talloc && make"),
855 ("talloc-install", "cd lib/talloc && make install"),
857 ("tdb-configure", "cd lib/tdb && " + samba_libs_configure_libs
),
858 ("tdb-make", "cd lib/tdb && make"),
859 ("tdb-install", "cd lib/tdb && make install"),
861 ("tevent-configure", "cd lib/tevent && " + samba_libs_configure_libs
),
862 ("tevent-make", "cd lib/tevent && make"),
863 ("tevent-install", "cd lib/tevent && make install"),
865 ("ldb-configure", "cd lib/ldb && " + samba_libs_configure_libs
),
866 ("ldb-make", "cd lib/ldb && make"),
867 ("ldb-install", "cd lib/ldb && make install"),
869 ("nondevel-configure", samba_libs_envvars
+ " ./configure ${PREFIX}"),
870 ("nondevel-make", "make -j"),
871 ("nondevel-check", "./bin/smbd -b | grep WITH_NTVFS_FILESERVER && exit 1; exit 0"),
872 ("nondevel-no-libtalloc", "find ./bin | grep -v 'libtalloc-report' | grep 'libtalloc' && exit 1; exit 0"),
873 ("nondevel-no-libtdb", "find ./bin | grep -v 'libtdb-wrap' | grep 'libtdb' && exit 1; exit 0"),
874 ("nondevel-no-libtevent", "find ./bin | grep -v 'libtevent-util' | grep 'libtevent' && exit 1; exit 0"),
875 ("nondevel-no-libldb", "find ./bin | grep -v 'module' | grep -v 'libldbsamba' | grep 'libldb' && exit 1; exit 0"),
876 ("nondevel-no-samba-nss_winbind", "ldd ./bin/plugins/libnss_winbind.so.2 | grep 'samba' && exit 1; exit 0"),
877 ("nondevel-no-samba-nss_wins", "ldd ./bin/plugins/libnss_wins.so.2 | grep 'samba' && exit 1; exit 0"),
878 ("nondevel-no-samba-libwbclient", "ldd ./bin/shared/libwbclient.so.0 | grep 'samba' && exit 1; exit 0"),
879 ("nondevel-no-samba-pam_winbind", "ldd ./bin/plugins/pam_winbind.so | grep -v 'libtalloc.so.2' | grep 'samba' && exit 1; exit 0"),
880 ("nondevel-no-public-nss_winbind",
881 check_symbols("./bin/plugins/libnss_winbind.so.2", "_nss_winbind_")),
882 ("nondevel-no-public-nss_wins",
883 check_symbols("./bin/plugins/libnss_wins.so.2", "_nss_wins_")),
884 ("nondevel-no-public-libwbclient",
885 check_symbols("./bin/shared/libwbclient.so.0", "wbc")),
886 ("nondevel-no-public-pam_winbind",
887 check_symbols("./bin/plugins/pam_winbind.so", "pam_sm_")),
888 ("nondevel-no-public-winbind_krb5_locator",
889 check_symbols("./bin/plugins/winbind_krb5_locator.so", "service_locator")),
890 ("nondevel-no-public-async_dns_krb5_locator",
891 check_symbols("./bin/plugins/async_dns_krb5_locator.so", "service_locator")),
892 ("nondevel-install", "make -j install"),
893 ("nondevel-dist", "make dist"),
895 ("prefix-no-private-libtalloc", "find ${PREFIX_DIR} | grep -v 'libtalloc-report' | grep 'private.*libtalloc' && exit 1; exit 0"),
896 ("prefix-no-private-libtdb", "find ${PREFIX_DIR} | grep -v 'libtdb-wrap' | grep 'private.*libtdb' && exit 1; exit 0"),
897 ("prefix-no-private-libtevent", "find ${PREFIX_DIR} | grep -v 'libtevent-util' | grep 'private.*libtevent' && exit 1; exit 0"),
898 ("prefix-no-private-libldb", "find ${PREFIX_DIR} | grep -v 'module' | grep -v 'libldbsamba' | grep 'private.*libldb' && exit 1; exit 0"),
899 ("prefix-no-samba-nss_winbind", "ldd ${PREFIX_DIR}/lib/libnss_winbind.so.2 | grep 'samba' && exit 1; exit 0"),
900 ("prefix-no-samba-nss_wins", "ldd ${PREFIX_DIR}/lib/libnss_wins.so.2 | grep 'samba' && exit 1; exit 0"),
901 ("prefix-no-samba-libwbclient", "ldd ${PREFIX_DIR}/lib/libwbclient.so.0 | grep 'samba' && exit 1; exit 0"),
902 ("prefix-no-samba-pam_winbind", "ldd ${PREFIX_DIR}/lib/security/pam_winbind.so | grep -v 'libtalloc.so.2' | grep 'samba' && exit 1; exit 0"),
903 ("prefix-no-public-nss_winbind",
904 check_symbols("${PREFIX_DIR}/lib/libnss_winbind.so.2", "_nss_winbind_")),
905 ("prefix-no-public-nss_wins",
906 check_symbols("${PREFIX_DIR}/lib/libnss_wins.so.2", "_nss_wins_")),
907 ("prefix-no-public-libwbclient",
908 check_symbols("${PREFIX_DIR}/lib/libwbclient.so.0", "wbc")),
909 ("prefix-no-public-pam_winbind",
910 check_symbols("${PREFIX_DIR}/lib/security/pam_winbind.so", "pam_sm_")),
911 ("prefix-no-public-winbind_krb5_locator",
912 check_symbols("${PREFIX_DIR}/lib/krb5/winbind_krb5_locator.so",
914 ("prefix-no-public-async_dns_krb5_locator",
915 check_symbols("${PREFIX_DIR}/lib/krb5/async_dns_krb5_locator.so",
918 # retry with all modules shared
919 ("allshared-distclean", "make distclean"),
920 ("allshared-configure", samba_libs_configure_samba
+ " --with-shared-modules=ALL"),
921 ("allshared-make", "make -j"),
922 ("allshared-no-libtalloc", "find ./bin | grep -v 'libtalloc-report' | grep 'libtalloc' && exit 1; exit 0"),
923 ("allshared-no-libtdb", "find ./bin | grep -v 'libtdb-wrap' | grep 'libtdb' && exit 1; exit 0"),
924 ("allshared-no-libtevent", "find ./bin | grep -v 'libtevent-util' | grep 'libtevent' && exit 1; exit 0"),
925 ("allshared-no-libldb", "find ./bin | grep -v 'module' | grep -v 'libldbsamba' | grep 'libldb' && exit 1; exit 0"),
926 ("allshared-no-samba-nss_winbind", "ldd ./bin/plugins/libnss_winbind.so.2 | grep 'samba' && exit 1; exit 0"),
927 ("allshared-no-samba-nss_wins", "ldd ./bin/plugins/libnss_wins.so.2 | grep 'samba' && exit 1; exit 0"),
928 ("allshared-no-samba-libwbclient", "ldd ./bin/shared/libwbclient.so.0 | grep 'samba' && exit 1; exit 0"),
929 ("allshared-no-samba-pam_winbind", "ldd ./bin/plugins/pam_winbind.so | grep -v 'libtalloc.so.2' | grep 'samba' && exit 1; exit 0"),
930 ("allshared-no-public-nss_winbind",
931 check_symbols("./bin/plugins/libnss_winbind.so.2", "_nss_winbind_")),
932 ("allshared-no-public-nss_wins",
933 check_symbols("./bin/plugins/libnss_wins.so.2", "_nss_wins_")),
934 ("allshared-no-public-libwbclient",
935 check_symbols("./bin/shared/libwbclient.so.0", "wbc")),
936 ("allshared-no-public-pam_winbind",
937 check_symbols("./bin/plugins/pam_winbind.so", "pam_sm_")),
938 ("allshared-no-public-winbind_krb5_locator",
939 check_symbols("./bin/plugins/winbind_krb5_locator.so", "service_locator")),
940 ("allshared-no-public-async_dns_krb5_locator",
941 check_symbols("./bin/plugins/async_dns_krb5_locator.so", "service_locator")),
947 # build the fuzzers (static) via the oss-fuzz script
948 ("fuzzers-mkdir-prefix", "mkdir -p ${PREFIX_DIR}"),
949 ("fuzzers-build", "OUT=${PREFIX_DIR} LIB_FUZZING_ENGINE= SANITIZER=address CXX= CFLAGS= ADDITIONAL_LDFLAGS='-fuse-ld=bfd' ./lib/fuzzing/oss-fuzz/build_samba.sh --enable-afl-fuzzer"),
953 # * Test smbd and smbtorture can build semi-static
955 # * Test Samba without python still builds.
957 # When this test fails due to more use of Python, the expectations
958 # is that the newly failing part of the code should be disabled
959 # when --disable-python is set (rather than major work being done
960 # to support this environment).
962 # The target here is for vendors shipping a minimal smbd.
963 "samba-minimal-smbd": {
965 ("random-sleep", random_sleep(300, 900)),
967 # build with all modules static
968 ("allstatic-configure", "./configure.developer " + samba_configure_params
+ " --with-static-modules=ALL"),
969 ("allstatic-make", "make -j"),
970 ("allstatic-test", make_test(TESTS
="samba3.smb2.create.*nt4_dc")),
971 ("allstatic-lcov", LCOV_CMD
),
973 # retry with nonshared smbd and smbtorture
974 ("nonshared-distclean", "make distclean"),
975 ("nonshared-configure", "./configure.developer " + samba_configure_params
+ " --bundled-libraries=ALL --with-static-modules=ALL --nonshared-binary=smbtorture,smbd/smbd"),
976 ("nonshared-make", "make -j"),
977 # TODO ("nonshared-test", make_test(TESTS="samba3.smb2.create.*nt4_dc")),
978 # TODO ("nonshared-lcov", LCOV_CMD),
980 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
981 ("clean", "make clean"),
987 ("random-sleep", random_sleep(300, 900)),
989 ("configure", "./configure.developer ${ENABLE_COVERAGE} ${PREFIX} --with-profiling-data --disable-python --without-ad-dc"),
991 ("find-python", "script/find_python.sh ${PREFIX}"),
992 ("test", "make test-nopython"),
994 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
995 ("clean", "make clean"),
997 ("talloc-configure", "cd lib/talloc && " + samba_libs_configure_base
+ " --bundled-libraries=cmocka,NONE --disable-python"),
998 ("talloc-make", "cd lib/talloc && make"),
999 ("talloc-install", "cd lib/talloc && make install"),
1001 ("tdb-configure", "cd lib/tdb && " + samba_libs_configure_base
+ " --bundled-libraries=cmocka,NONE --disable-python"),
1002 ("tdb-make", "cd lib/tdb && make"),
1003 ("tdb-install", "cd lib/tdb && make install"),
1005 ("tevent-configure", "cd lib/tevent && " + samba_libs_configure_base
+ " --bundled-libraries=cmocka,NONE --disable-python"),
1006 ("tevent-make", "cd lib/tevent && make"),
1007 ("tevent-install", "cd lib/tevent && make install"),
1009 ("ldb-configure", "cd lib/ldb && " + samba_libs_configure_base
+ " --bundled-libraries=cmocka,NONE --disable-python"),
1010 ("ldb-make", "cd lib/ldb && make"),
1011 ("ldb-install", "cd lib/ldb && make install"),
1013 # retry against installed library packages, but no required modules
1014 ("libs-configure", samba_libs_configure_base
+ samba_libs_configure_bundled_libs
+ " --disable-python --without-ad-dc --with-static-modules=!FORCED,!DEFAULT --with-shared-modules=!FORCED,!DEFAULT"),
1015 ("libs-make", "make -j"),
1016 ("libs-install", "make install"),
1017 ("libs-check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
1018 ("libs-clean", "make clean"),
1025 ("random-sleep", random_sleep(60, 600)),
1026 ("configure", "./configure ${ENABLE_COVERAGE} --enable-developer -C ${PREFIX}"),
1028 ("install", "make install"),
1029 ("test", "make test"),
1031 ("clean", "make clean"),
1032 ("configure-no-lmdb", "./configure ${ENABLE_COVERAGE} --enable-developer --without-ldb-lmdb -C ${PREFIX}"),
1033 ("make-no-lmdb", "make"),
1034 ("test-no-lmdb", "make test"),
1035 ("lcov-no-lmdb", LCOV_CMD
),
1036 ("install-no-lmdb", "make install"),
1037 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
1038 ("distcheck", "make distcheck"),
1039 ("clean", "make clean"),
1045 ("random-sleep", random_sleep(60, 600)),
1046 ("configure", "./configure ${ENABLE_COVERAGE} --enable-developer -C ${PREFIX}"),
1048 ("install", "make install"),
1049 ("test", "make test"),
1051 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
1052 ("distcheck", "make distcheck"),
1053 ("clean", "make clean"),
1059 ("random-sleep", random_sleep(60, 600)),
1060 ("configure", "./configure ${ENABLE_COVERAGE} --enable-developer -C ${PREFIX}"),
1062 ("install", "make install"),
1063 ("test", "make test"),
1065 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
1066 ("distcheck", "make distcheck"),
1067 ("clean", "make clean"),
1073 ("random-sleep", random_sleep(60, 600)),
1074 ("configure", "./configure ${ENABLE_COVERAGE} --enable-developer -C ${PREFIX}"),
1076 ("install", "make install"),
1077 ("test", "make test"),
1079 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
1080 ("distcheck", "make distcheck"),
1081 ("clean", "make clean"),
1087 ("random-sleep", random_sleep(60, 600)),
1088 ("configure", "./configure ${ENABLE_COVERAGE} --enable-developer -C ${PREFIX}"),
1090 ("install", "make install"),
1091 ("test", "make test"),
1093 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
1094 ("distcheck", "make distcheck"),
1095 ("clean", "make clean"),
1100 "git-clone-required": True,
1102 ("random-sleep", random_sleep(60, 600)),
1103 ("configure", "perl Makefile.PL PREFIX=${PREFIX_DIR}"),
1104 ("touch", "touch *.yp"),
1106 ("test", "make test"),
1107 ("install", "make install"),
1108 ("checkout-yapp-generated", "git checkout lib/Parse/Pidl/IDL.pm lib/Parse/Pidl/Expr.pm"),
1109 ("check-clean-tree", CLEAN_SOURCE_TREE_CMD
),
1110 ("clean", "make clean"),
1114 # these are useful for debugging autobuild
1117 ("pass", 'echo passing && /bin/true'),
1122 ("fail", 'echo failing && /bin/false'),
1127 defaulttasks
= list(tasks
.keys())
1129 defaulttasks
.remove("pass")
1130 defaulttasks
.remove("fail")
1132 # The build tasks will be brought in by the test tasks as needed
1133 defaulttasks
.remove("samba-def-build")
1134 defaulttasks
.remove("samba-nt4-build")
1135 defaulttasks
.remove("samba-mit-build")
1136 defaulttasks
.remove("samba-h5l-build")
1137 defaulttasks
.remove("samba-no-opath-build")
1139 # This is not a normal test, but a task to support manually running
1140 # one test under autobuild
1141 defaulttasks
.remove("samba-test-only")
1143 # Only built on GitLab CI and not in the default autobuild because it
1144 # uses too much space (4GB of semi-static binaries)
1145 defaulttasks
.remove("samba-fuzz")
1147 # The FIPS build runs only in GitLab CI on a current Fedora Docker
1148 # container where a simulated FIPS mode is possible.
1149 defaulttasks
.remove("samba-fips")
1151 # The MIT build runs on a current Fedora where an up to date MIT KDC
1152 # is already packaged. This avoids needing to backport a current MIT
1153 # to the default Ubuntu 18.04, particularly during development, and
1154 # the need to install on the shared sn-devel-184.
1156 defaulttasks
.remove("samba-mitkrb5")
1157 defaulttasks
.remove("samba-admem-mit")
1158 defaulttasks
.remove("samba-addc-mit-1")
1159 defaulttasks
.remove("samba-addc-mit-4a")
1160 defaulttasks
.remove("samba-addc-mit-4b")
1162 if os
.environ
.get("AUTOBUILD_SKIP_SAMBA_O3", "0") == "1":
1163 defaulttasks
.remove("samba-o3")
1172 def run_cmd(cmd
, dir=".", show
=None, output
=False, checkfail
=True):
1174 show
= options
.verbose
1176 do_print("Running: '%s' in '%s'" % (cmd
, dir))
1178 out
= check_output([cmd
], shell
=True, cwd
=dir)
1179 return out
.decode(encoding
='utf-8', errors
='backslashreplace')
1181 return check_call(cmd
, shell
=True, cwd
=dir)
1183 return call(cmd
, shell
=True, cwd
=dir)
1185 def rmdir_force(dirname
, re_raise
=True):
1187 run_cmd("test -d %s && chmod -R +w %s; rm -rf %s" % (
1188 dirname
, dirname
, dirname
), output
=True, show
=True)
1189 except CalledProcessError
as e
:
1190 do_print("Failed: '%s'" % (str(e
)))
1191 run_cmd("tree %s" % dirname
, output
=True, show
=True)
1197 class builder(object):
1198 '''handle build of one directory'''
1200 def __init__(self
, name
, definition
):
1202 self
.dir = builddirs
.get(name
, '.')
1203 self
.tag
= self
.name
.replace('/', '_')
1204 self
.definition
= definition
1205 self
.sequence
= definition
["sequence"]
1206 self
.git_clone_required
= False
1207 if "git-clone-required" in definition
:
1208 self
.git_clone_required
= bool(definition
["git-clone-required"])
1212 self
.stdout_path
= "%s/%s.stdout" % (gitroot
, self
.tag
)
1213 self
.stderr_path
= "%s/%s.stderr" % (gitroot
, self
.tag
)
1215 do_print("stdout for %s in %s" % (self
.name
, self
.stdout_path
))
1216 do_print("stderr for %s in %s" % (self
.name
, self
.stderr_path
))
1217 run_cmd("rm -f %s %s" % (self
.stdout_path
, self
.stderr_path
))
1218 self
.stdout
= open(self
.stdout_path
, 'w')
1219 self
.stderr
= open(self
.stderr_path
, 'w')
1220 self
.stdin
= open("/dev/null", 'r')
1221 self
.builder_dir
= "%s/%s" % (testbase
, self
.tag
)
1222 self
.test_source_dir
= self
.builder_dir
1223 self
.cwd
= "%s/%s" % (self
.builder_dir
, self
.dir)
1224 self
.selftest_prefix
= "%s/bin/ab" % (self
.cwd
)
1225 self
.prefix
= "%s/%s" % (test_prefix
, self
.tag
)
1227 self
.producer
= None
1229 if self
.git_clone_required
:
1230 assert "dependency" not in definition
1232 def mark_existing(self
):
1233 do_print('%s: Mark as existing dependency' % self
.name
)
1234 self
.next
= len(self
.sequence
)
1237 def add_consumer(self
, consumer
):
1238 do_print("%s: add consumer: %s" % (self
.name
, consumer
.name
))
1239 consumer
.producer
= self
1240 consumer
.test_source_dir
= self
.test_source_dir
1241 self
.consumers
.append(consumer
)
1243 def start_next(self
):
1244 if self
.producer
is not None:
1245 if not self
.producer
.done
:
1246 do_print("%s: Waiting for producer: %s" % (self
.name
, self
.producer
.name
))
1250 rmdir_force(self
.builder_dir
)
1251 rmdir_force(self
.prefix
)
1252 if self
.producer
is not None:
1253 run_cmd("mkdir %s" % (self
.builder_dir
), dir=test_master
, show
=True)
1254 elif not self
.git_clone_required
:
1255 run_cmd("cp -R -a -l %s %s" % (test_master
, self
.builder_dir
), dir=test_master
, show
=True)
1257 run_cmd("git clone --recursive --shared %s %s" % (test_master
, self
.builder_dir
), dir=test_master
, show
=True)
1259 if self
.next
== len(self
.sequence
):
1261 do_print('%s: Completed OK' % self
.name
)
1263 if not options
.nocleanup
and len(self
.consumers
) == 0:
1264 do_print('%s: Cleaning up' % self
.name
)
1265 rmdir_force(self
.builder_dir
)
1266 rmdir_force(self
.prefix
)
1267 for consumer
in self
.consumers
:
1268 if consumer
.next
!= 0:
1270 do_print('%s: Starting consumer %s' % (self
.name
, consumer
.name
))
1271 consumer
.start_next()
1272 if self
.producer
is not None:
1273 self
.producer
.consumers
.remove(self
)
1274 assert self
.producer
.done
1275 self
.producer
.start_next()
1276 do_print('%s: Remaining consumers %u' % (self
.name
, len(self
.consumers
)))
1278 (self
.stage
, self
.cmd
) = self
.sequence
[self
.next
]
1279 self
.cmd
= self
.cmd
.replace("${PYTHON_PREFIX}", get_python_lib(plat_specific
=1, standard_lib
=0, prefix
=self
.prefix
))
1280 self
.cmd
= self
.cmd
.replace("${PREFIX}", "--prefix=%s" % self
.prefix
)
1281 self
.cmd
= self
.cmd
.replace("${PREFIX_DIR}", "%s" % self
.prefix
)
1282 self
.cmd
= self
.cmd
.replace("${TESTS}", options
.restrict_tests
)
1283 self
.cmd
= self
.cmd
.replace("${TEST_SOURCE_DIR}", self
.test_source_dir
)
1284 self
.cmd
= self
.cmd
.replace("${SELFTEST_PREFIX}", self
.selftest_prefix
)
1285 self
.cmd
= self
.cmd
.replace("${LOG_BASE}", options
.log_base
)
1286 self
.cmd
= self
.cmd
.replace("${NAME}", self
.name
)
1287 self
.cmd
= self
.cmd
.replace("${ENABLE_COVERAGE}", options
.enable_coverage
)
1288 do_print('%s: [%s] Running %s in %r' % (self
.name
, self
.stage
, self
.cmd
, self
.cwd
))
1289 self
.proc
= Popen(self
.cmd
, shell
=True,
1290 close_fds
=True, cwd
=self
.cwd
,
1291 stdout
=self
.stdout
, stderr
=self
.stderr
, stdin
=self
.stdin
)
1294 def expand_dependencies(n
):
1296 if "dependency" in tasks
[n
]:
1297 depname
= tasks
[n
]["dependency"]
1298 assert depname
in tasks
1299 sdeps
= expand_dependencies(depname
)
1300 assert n
not in sdeps
1303 deps
.append(depname
)
1307 class buildlist(object):
1308 '''handle build of multiple directories'''
1310 def __init__(self
, tasknames
, rebase_url
, rebase_branch
="master"):
1311 self
.tail_proc
= None
1314 if options
.restrict_tests
:
1315 tasknames
= ["samba-test-only"]
1317 tasknames
= defaulttasks
1319 given_tasknames
= tasknames
.copy()
1320 implicit_tasknames
= []
1321 for n
in given_tasknames
:
1322 deps
= expand_dependencies(n
)
1324 if dep
in given_tasknames
:
1326 if dep
in implicit_tasknames
:
1328 implicit_tasknames
.append(dep
)
1330 tasknames
= implicit_tasknames
.copy()
1331 tasknames
.extend(given_tasknames
)
1332 do_print("given_tasknames: %s" % given_tasknames
)
1333 do_print("implicit_tasknames: %s" % implicit_tasknames
)
1334 do_print("tasknames: %s" % tasknames
)
1335 self
.tlist
= [builder(n
, tasks
[n
]) for n
in tasknames
]
1338 rebase_remote
= "rebaseon"
1340 "git-clone-required": True,
1344 git remote add -t %s %s %s
1348 git describe %s/%s > old_remote_branch.desc
1350 git describe %s/%s > remote_branch.desc
1351 diff old_remote_branch.desc remote_branch.desc
1354 rebase_branch
, rebase_remote
, rebase_url
,
1356 rebase_remote
, rebase_branch
,
1358 rebase_remote
, rebase_branch
1361 self
.retry
= builder('retry', retry_task
)
1362 self
.need_retry
= False
1364 if options
.skip_dependencies
:
1365 for b
in self
.tlist
:
1366 if b
.name
in implicit_tasknames
:
1369 for b
in self
.tlist
:
1370 do_print("b.name=%s" % b
.name
)
1371 if "dependency" not in b
.definition
:
1373 depname
= b
.definition
["dependency"]
1374 do_print("b.name=%s: dependency:%s" % (b
.name
, depname
))
1375 for p
in self
.tlist
:
1376 if p
.name
== depname
:
1379 def kill_kids(self
):
1380 if self
.tail_proc
is not None:
1381 self
.tail_proc
.terminate()
1382 self
.tail_proc
.wait()
1383 self
.tail_proc
= None
1384 if self
.retry
is not None:
1385 self
.retry
.proc
.terminate()
1386 self
.retry
.proc
.wait()
1388 for b
in self
.tlist
:
1389 if b
.proc
is not None:
1390 run_cmd("killbysubdir %s > /dev/null 2>&1" % b
.test_source_dir
, checkfail
=False)
1398 for b
in self
.tlist
:
1401 none_running
= False
1402 b
.status
= b
.proc
.poll()
1403 if b
.status
is None:
1408 ret
= self
.retry
.proc
.poll()
1410 self
.need_retry
= True
1418 for b
in self
.tlist
:
1421 self
.retry
.start_next()
1424 if options
.retry
and self
.need_retry
:
1426 do_print("retry needed")
1427 return (0, None, None, None, "retry")
1430 if os
.WIFSIGNALED(b
.status
) or os
.WEXITSTATUS(b
.status
) != 0:
1432 return (b
.status
, b
.name
, b
.stage
, b
.tag
, "%s: [%s] failed '%s' with status %d" % (b
.name
, b
.stage
, b
.cmd
, b
.status
))
1435 return (0, None, None, None, "All OK")
1437 def write_system_info(self
, filename
):
1438 with
open(filename
, 'w') as f
:
1439 for cmd
in ['uname -a',
1443 'cat /proc/cpuinfo',
1446 'df -m %s' % testbase
]:
1448 out
= run_cmd(cmd
, output
=True, checkfail
=False)
1449 except CalledProcessError
as e
:
1450 out
= "<failed: %s>" % str(e
)
1451 print('### %s' % cmd
, file=f
)
1455 def tarlogs(self
, fname
):
1456 with tarfile
.open(fname
, "w:gz") as tar
:
1457 for b
in self
.tlist
:
1458 tar
.add(b
.stdout_path
, arcname
="%s.stdout" % b
.tag
)
1459 tar
.add(b
.stderr_path
, arcname
="%s.stderr" % b
.tag
)
1460 if os
.path
.exists("autobuild.log"):
1461 tar
.add("autobuild.log")
1462 filename
= 'system-info.txt'
1463 self
.write_system_info(filename
)
1466 def remove_logs(self
):
1467 for b
in self
.tlist
:
1468 os
.unlink(b
.stdout_path
)
1469 os
.unlink(b
.stderr_path
)
1471 def start_tail(self
):
1472 cmd
= ["tail", "-f"]
1473 for b
in self
.tlist
:
1474 cmd
.append(b
.stdout_path
)
1475 cmd
.append(b
.stderr_path
)
1476 self
.tail_proc
= Popen(cmd
, close_fds
=True)
1479 def cleanup(do_raise
=False):
1480 if options
.nocleanup
:
1482 run_cmd("stat %s || true" % test_tmpdir
, show
=True)
1483 run_cmd("stat %s" % testbase
, show
=True)
1484 do_print("Cleaning up %r" % cleanup_list
)
1485 for d
in cleanup_list
:
1486 ok
= rmdir_force(d
, re_raise
=False)
1489 if os
.path
.isdir(d
):
1490 do_print("Killing, waiting and retry")
1491 run_cmd("killbysubdir %s > /dev/null 2>&1" % d
, checkfail
=False)
1493 do_print("Waiting and retry")
1495 rmdir_force(d
, re_raise
=do_raise
)
1498 def daemonize(logfile
):
1500 if pid
== 0: # Parent
1503 if pid
!= 0: # Actual daemon
1508 import resource
# Resource usage information.
1509 maxfd
= resource
.getrlimit(resource
.RLIMIT_NOFILE
)[1]
1510 if maxfd
== resource
.RLIM_INFINITY
:
1511 maxfd
= 1024 # Rough guess at maximum number of open file descriptors.
1512 for fd
in range(0, maxfd
):
1517 os
.open(logfile
, os
.O_RDWR | os
.O_CREAT
)
1522 def write_pidfile(fname
):
1523 '''write a pid file, cleanup on exit'''
1524 with
open(fname
, mode
='w') as f
:
1525 f
.write("%u\n" % os
.getpid())
1528 def rebase_tree(rebase_url
, rebase_branch
="master"):
1529 rebase_remote
= "rebaseon"
1530 do_print("Rebasing on %s" % rebase_url
)
1531 run_cmd("git describe HEAD", show
=True, dir=test_master
)
1532 run_cmd("git remote add -t %s %s %s" %
1533 (rebase_branch
, rebase_remote
, rebase_url
),
1534 show
=True, dir=test_master
)
1535 run_cmd("git fetch %s" % rebase_remote
, show
=True, dir=test_master
)
1536 if options
.fix_whitespace
:
1537 run_cmd("git rebase --force-rebase --whitespace=fix %s/%s" %
1538 (rebase_remote
, rebase_branch
),
1539 show
=True, dir=test_master
)
1541 run_cmd("git rebase --force-rebase %s/%s" %
1542 (rebase_remote
, rebase_branch
),
1543 show
=True, dir=test_master
)
1544 diff
= run_cmd("git --no-pager diff HEAD %s/%s" %
1545 (rebase_remote
, rebase_branch
),
1546 dir=test_master
, output
=True)
1548 do_print("No differences between HEAD and %s/%s - exiting" %
1549 (rebase_remote
, rebase_branch
))
1551 run_cmd("git describe %s/%s" %
1552 (rebase_remote
, rebase_branch
),
1553 show
=True, dir=test_master
)
1554 run_cmd("git describe HEAD", show
=True, dir=test_master
)
1555 run_cmd("git --no-pager diff --stat HEAD %s/%s" %
1556 (rebase_remote
, rebase_branch
),
1557 show
=True, dir=test_master
)
1560 def push_to(push_url
, push_branch
="master"):
1561 push_remote
= "pushto"
1562 do_print("Pushing to %s" % push_url
)
1564 run_cmd("git config --replace-all core.editor script/commit_mark.sh", dir=test_master
)
1565 run_cmd("git commit --amend -c HEAD", dir=test_master
)
1566 # the notes method doesn't work yet, as metze hasn't allowed refs/notes/* in master
1567 # run_cmd("EDITOR=script/commit_mark.sh git notes edit HEAD", dir=test_master)
1568 run_cmd("git remote add -t %s %s %s" %
1569 (push_branch
, push_remote
, push_url
),
1570 show
=True, dir=test_master
)
1571 run_cmd("git push %s +HEAD:%s" %
1572 (push_remote
, push_branch
),
1573 show
=True, dir=test_master
)
1576 def send_email(subject
, text
, log_tar
):
1577 if options
.email
is None:
1578 do_print("not sending email because the recipient is not set")
1579 do_print("the text content would have been:\n\nSubject: %s\n\n%s" %
1582 outer
= MIMEMultipart()
1583 outer
['Subject'] = subject
1584 outer
['To'] = options
.email
1585 outer
['From'] = options
.email_from
1586 outer
['Date'] = email
.utils
.formatdate(localtime
=True)
1587 outer
.preamble
= 'Autobuild mails are now in MIME because we optionally attach the logs.\n'
1588 outer
.attach(MIMEText(text
, 'plain', 'utf-8'))
1589 if options
.attach_logs
:
1590 with
open(log_tar
, 'rb') as fp
:
1591 msg
= MIMEApplication(fp
.read(), 'gzip', email
.encoders
.encode_base64
)
1592 # Set the filename parameter
1593 msg
.add_header('Content-Disposition', 'attachment', filename
=os
.path
.basename(log_tar
))
1595 content
= outer
.as_string()
1596 s
= smtplib
.SMTP(options
.email_server
)
1597 email_user
= os
.getenv('SMTP_USERNAME')
1598 email_password
= os
.getenv('SMTP_PASSWORD')
1599 if email_user
is not None:
1601 s
.login(email_user
, email_password
)
1603 s
.sendmail(options
.email_from
, [options
.email
], content
)
1608 def email_failure(status
, failed_task
, failed_stage
, failed_tag
, errstr
,
1609 elapsed_time
, log_base
=None, add_log_tail
=True):
1610 '''send an email to options.email about the failure'''
1611 elapsed_minutes
= elapsed_time
/ 60.0
1612 if log_base
is None:
1617 Your autobuild on %s failed after %.1f minutes
1618 when trying to test %s with the following error:
1622 the autobuild has been abandoned. Please fix the error and resubmit.
1624 A summary of the autobuild process is here:
1627 ''' % (platform
.node(), elapsed_minutes
, failed_task
, errstr
, log_base
)
1629 if options
.restrict_tests
:
1631 The build was restricted to tests matching %s\n""" % options
.restrict_tests
1633 if failed_task
!= 'rebase':
1635 You can see logs of the failed task here:
1640 or you can get full logs of all tasks in this job here:
1644 The top commit for the tree that was built was:
1648 ''' % (log_base
, failed_tag
, log_base
, failed_tag
, log_base
, top_commit_msg
)
1651 f
= open("%s/%s.stdout" % (gitroot
, failed_tag
), 'r')
1652 lines
= f
.readlines()
1653 log_tail
= "".join(lines
[-50:])
1654 num_lines
= len(lines
)
1656 # Also include stderr (compile failures) if < 50 lines of stdout
1657 f
= open("%s/%s.stderr" % (gitroot
, failed_tag
), 'r')
1658 log_tail
+= "".join(f
.readlines()[-(50 - num_lines
):])
1661 The last 50 lines of log messages:
1667 logs
= os
.path
.join(gitroot
, 'logs.tar.gz')
1668 send_email('autobuild[%s] failure on %s for task %s during %s'
1669 % (options
.branch
, platform
.node(), failed_task
, failed_stage
),
1673 def email_success(elapsed_time
, log_base
=None):
1674 '''send an email to options.email about a successful build'''
1675 if log_base
is None:
1680 Your autobuild on %s has succeeded after %.1f minutes.
1682 ''' % (platform
.node(), elapsed_time
/ 60.)
1684 if options
.restrict_tests
:
1686 The build was restricted to tests matching %s\n""" % options
.restrict_tests
1688 if options
.keeplogs
:
1691 you can get full logs of all tasks in this job here:
1698 The top commit for the tree that was built was:
1701 ''' % top_commit_msg
1703 logs
= os
.path
.join(gitroot
, 'logs.tar.gz')
1704 send_email('autobuild[%s] success on %s' % (options
.branch
, platform
.node()),
1708 # get the top commit message, for emails
1709 top_commit_msg
= run_cmd("git log -1", dir=gitroot
, output
=True)
1712 if options
.skip_dependencies
:
1713 run_cmd("stat %s" % testbase
, dir=testbase
, output
=True)
1715 os
.makedirs(testbase
)
1716 except Exception as reason
:
1717 raise Exception("Unable to create %s : %s" % (testbase
, reason
))
1718 cleanup_list
.append(testbase
)
1721 logfile
= os
.path
.join(testbase
, "log")
1722 do_print("Forking into the background, writing progress to %s" % logfile
)
1725 write_pidfile(gitroot
+ "/autobuild.pid")
1727 start_time
= time
.time()
1731 run_cmd("rm -rf %s" % test_tmpdir
, show
=True)
1732 os
.makedirs(test_tmpdir
)
1733 # The waf uninstall code removes empty directories all the way
1734 # up the tree. Creating a file in test_tmpdir stops it from
1736 run_cmd("touch %s" % os
.path
.join(test_tmpdir
,
1737 ".directory-is-not-empty"), show
=True)
1738 run_cmd("stat %s" % test_tmpdir
, show
=True)
1739 run_cmd("stat %s" % testbase
, show
=True)
1740 if options
.skip_dependencies
:
1741 run_cmd("stat %s" % test_master
, dir=testbase
, output
=True)
1743 run_cmd("git clone --recursive --shared %s %s" % (gitroot
, test_master
), show
=True, dir=gitroot
)
1749 if options
.rebase
is not None:
1750 rebase_tree(options
.rebase
, rebase_branch
=options
.branch
)
1752 cleanup_list
.append(gitroot
+ "/autobuild.pid")
1754 elapsed_time
= time
.time() - start_time
1755 email_failure(-1, 'rebase', 'rebase', 'rebase',
1756 'rebase on %s failed' % options
.branch
,
1757 elapsed_time
, log_base
=options
.log_base
)
1761 blist
= buildlist(args
, options
.rebase
, rebase_branch
=options
.branch
)
1764 (status
, failed_task
, failed_stage
, failed_tag
, errstr
) = blist
.run()
1765 if status
!= 0 or errstr
!= "retry":
1767 cleanup(do_raise
=True)
1772 cleanup_list
.append(gitroot
+ "/autobuild.pid")
1778 do_print("waiting for tail to flush")
1781 elapsed_time
= time
.time() - start_time
1783 if options
.passcmd
is not None:
1784 do_print("Running passcmd: %s" % options
.passcmd
)
1785 run_cmd(options
.passcmd
, dir=test_master
)
1786 if options
.pushto
is not None:
1787 push_to(options
.pushto
, push_branch
=options
.branch
)
1788 if options
.keeplogs
or options
.attach_logs
:
1789 blist
.tarlogs("logs.tar.gz")
1790 do_print("Logs in logs.tar.gz")
1791 if options
.always_email
:
1792 email_success(elapsed_time
, log_base
=options
.log_base
)
1798 # something failed, gather a tar of the logs
1799 blist
.tarlogs("logs.tar.gz")
1801 if options
.email
is not None:
1802 email_failure(status
, failed_task
, failed_stage
, failed_tag
, errstr
,
1803 elapsed_time
, log_base
=options
.log_base
)
1805 elapsed_minutes
= elapsed_time
/ 60.0
1808 ####################################################################
1812 Your autobuild[%s] on %s failed after %.1f minutes
1813 when trying to test %s with the following error:
1817 the autobuild has been abandoned. Please fix the error and resubmit.
1819 ####################################################################
1821 ''' % (options
.branch
, platform
.node(), elapsed_minutes
, failed_task
, errstr
))
1825 do_print("Logs in logs.tar.gz")