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>2018-02-12 19:55:38 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-02-12 19:56:19 +0300
commit37ce77ba06dfb335ae8fe4ce4353a86a597b6dac (patch)
tree6f0d0220e077c3f845dc22de06c73d28685c1b3e /build_files
parentce8b5bd90ddfd94da7e6bcbc66f9af0dcd2f1ab8 (diff)
Buildbot: Remove usage of deprecated chroot
Diffstat (limited to 'build_files')
-rw-r--r--build_files/buildbot/slave_pack.py4
-rw-r--r--build_files/buildbot/slave_test.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/build_files/buildbot/slave_pack.py b/build_files/buildbot/slave_pack.py
index 41841d809eb..a0b5e8c6517 100644
--- a/build_files/buildbot/slave_pack.py
+++ b/build_files/buildbot/slave_pack.py
@@ -138,11 +138,11 @@ if builder.find('cmake') != -1:
blender_glibc = builder.split('_')[1]
if builder.endswith('x86_64_cmake'):
- chroot_name = 'buildbot_squeeze_x86_64'
+ chroot_name = 'buildbot_jessie_x86_64'
bits = 64
blender_arch = 'x86_64'
elif builder.endswith('i686_cmake'):
- chroot_name = 'buildbot_squeeze_i686'
+ chroot_name = 'buildbot_jessie_i686'
bits = 32
blender_arch = 'i686'
diff --git a/build_files/buildbot/slave_test.py b/build_files/buildbot/slave_test.py
index 6f313ede2ee..cd4730cba25 100644
--- a/build_files/buildbot/slave_test.py
+++ b/build_files/buildbot/slave_test.py
@@ -44,9 +44,9 @@ if "cmake" in builder:
"""
if builder.endswith('x86_64_cmake'):
- chroot_name = 'buildbot_squeeze_x86_64'
+ chroot_name = 'buildbot_jessie_x86_64'
elif builder.endswith('i686_cmake'):
- chroot_name = 'buildbot_squeeze_i686'
+ chroot_name = 'buildbot_jessie_i686'
if chroot_name:
chroot_prefix = ['schroot', '-c', chroot_name, '--']
"""