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.
This commit is contained in:
Sergey Sharybin 2015-12-03 16:44:44 +05:00
parent a4e151704f
commit 66067f3a97
1 changed files with 4 additions and 0 deletions

View File

@ -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 = []