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>2020-06-16 11:41:18 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2020-06-16 18:01:38 +0300
commit548312ed8288bbb733f2c302d40ca179e658cd89 (patch)
tree44543630ad0a0e07f66f5e7dd6a7c0bb2cc2bf17
parent56b345adc6fd12954a9320c7ed76e30115a279ac (diff)
Buildbot: Don't use builder name in the build directory
The directory layout on worker goes as following: <Worker> <Builder Name> blender.git/ build/ install/ lib/ Adding an extra <Builder Name> after build is redundant. Differential Revision: https://developer.blender.org/D8045
-rw-r--r--build_files/buildbot/buildbot_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_files/buildbot/buildbot_utils.py b/build_files/buildbot/buildbot_utils.py
index 2dc1526c5e8..acede05869a 100644
--- a/build_files/buildbot/buildbot_utils.py
+++ b/build_files/buildbot/buildbot_utils.py
@@ -40,8 +40,8 @@ class Builder:
# Buildbot runs from build/ directory
self.blender_dir = os.path.abspath(os.path.join('..', 'blender.git'))
- self.build_dir = os.path.abspath(os.path.join('..', 'build', name))
- self.install_dir = os.path.abspath(os.path.join('..', 'install', name))
+ self.build_dir = os.path.abspath(os.path.join('..', 'build'))
+ self.install_dir = os.path.abspath(os.path.join('..', 'install'))
self.upload_dir = os.path.abspath(os.path.join('..', 'install'))
# Detect platform