summaryrefslogtreecommitdiff
path: root/script/autobuild.py
diff options
context:
space:
mode:
Diffstat (limited to 'script/autobuild.py')
-rwxr-xr-xscript/autobuild.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index e53f49e29f2..49f84d243e6 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -55,6 +55,7 @@ builddirs = {
"samba-systemkrb5": ".",
"samba-nopython": ".",
"samba-buildpy3-only": ".",
+ "samba-purepy3-none-env": ".",
"ldb": "lib/ldb",
"tdb": "lib/tdb",
"talloc": "lib/talloc",
@@ -407,9 +408,21 @@ tasks = {
("check-clean-tree", "script/clean-source-tree.sh", "text/plain"),
("clean", "PYTHON='python3' make clean", "text/plain")],
+ "samba-purepy3-none-env": [
+ ("random-sleep", "script/random-sleep.sh 60 600", "text/plain"),
+ ("configure", "PYTHON='python3' ./configure.developer --with-selftest-prefix=./bin/ab" + samba_configure_params, "text/plain"),
+ ("make", "PYTHON='python3' make -j", "text/plain"),
+ ("test", "PYTHON='python3' make test "
+ "FAIL_IMMEDIATELY=1 "
+ "TESTS='${PY3_ONLY}"
+ "--include-env=none'",
+ "text/plain")],
+
# these are useful for debugging autobuild
'pass': [("pass", 'echo passing && /bin/true', "text/plain")],
'fail': [("fail", 'echo failing && /bin/false', "text/plain")]
+
+
}