Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-12-03 14:44:44 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-12-03 14:46:15 +0300
commit66067f3a9783f5b58fd14cc0e5d6df219af5360c (patch)
tree8c9de7ae5c12c325baf49b1073128ad47b047ac5 /build_files/buildbot/slave_test.py
parenta4e151704fe2e586a93a9beb5010cd830200b485 (diff)
Buildbot: Disable tests on Linux builders
No idea why they works on windows, but points are: - libs/tests folder is NOT checked out on any platforms - render_povray addon does mkdir on a path which might not have parents There might be some other issues, but those are kinda stoppers for us.
Diffstat (limited to 'build_files/buildbot/slave_test.py')
-rw-r--r--build_files/buildbot/slave_test.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/build_files/buildbot/slave_test.py b/build_files/buildbot/slave_test.py
index 9f43bcba61c..973e17a1f3b 100644
--- a/build_files/buildbot/slave_test.py
+++ b/build_files/buildbot/slave_test.py
@@ -35,6 +35,10 @@ blender_dir = '../blender.git'
if "cmake" in builder:
# cmake
+ if "linux" in builder:
+ print("Automated tests are still DISABLED!")
+ sys.exit(0)
+
build_dir = os.path.abspath(os.path.join('..', 'build', builder))
chroot_name = None
chroot_prefix = []