[Bf-blender-cvs] [df330ab2bbd] master: Buildbot: Fix missing environment for schroot tests

Sergey Sharybin noreply at git.blender.org
Tue Jul 2 14:15:50 CEST 2019


Commit: df330ab2bbddf1b35797f9a2f14f5a5c0e7a9737
Author: Sergey Sharybin
Date:   Tue Jul 2 14:15:26 2019 +0200
Branches: master
https://developer.blender.org/rBdf330ab2bbddf1b35797f9a2f14f5a5c0e7a9737

Buildbot: Fix missing environment for schroot tests

===================================================================

M	build_files/buildbot/slave_test.py

===================================================================

diff --git a/build_files/buildbot/slave_test.py b/build_files/buildbot/slave_test.py
index 31f536253b1..f5d998a4ee5 100644
--- a/build_files/buildbot/slave_test.py
+++ b/build_files/buildbot/slave_test.py
@@ -50,7 +50,7 @@ if "cmake" in builder:
                 chroot_name = 'buildbot_' + deb_name + '_x86_64'
             elif builder.endswith('i686_cmake'):
                 chroot_name = 'buildbot_' + deb_name + '_i686'
-            command_prefix = ['schroot', '-c', chroot_name, '--']
+            command_prefix = ['schroot', '--preserve-environment', '-c', chroot_name, '--']
         elif glibc == 'glibc217':
             command_prefix = ['scl', 'enable', 'devtoolset-6', '--']



More information about the Bf-blender-cvs mailing list