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:
authorBastien Montagne <montagne29@wanadoo.fr>2014-10-15 13:27:40 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-10-15 13:41:23 +0400
commitde54b031c61a180f28e87a30d436eed7b420bdcc (patch)
treef2081225c7a7e1e106597493a05256640e909c47 /build_files
parent5a6f9fd84dc2f2526b088122a514205b03f689c3 (diff)
Buildbot: Rename testbuild branch to experimental-build and put the builds to dedicated folder
Diffstat (limited to 'build_files')
-rw-r--r--build_files/buildbot/master.cfg2
-rw-r--r--build_files/buildbot/master_unpack.py5
2 files changed, 6 insertions, 1 deletions
diff --git a/build_files/buildbot/master.cfg b/build_files/buildbot/master.cfg
index 5f315337d3a..66b456f2586 100644
--- a/build_files/buildbot/master.cfg
+++ b/build_files/buildbot/master.cfg
@@ -113,7 +113,7 @@ def schedule_force_build(name):
codebases=[forcesched.CodebaseParameter(
codebase="blender",
branch=forcesched.ChoiceStringParameter(
- name="branch", choices=["master", "testbuild"], default="master"),
+ name="branch", choices=["master", "experimental-build"], default="master"),
# Do not hide revision, can be handy!
repository=forcesched.FixedParameter(name="repository", default="", hide=True),
project=forcesched.FixedParameter(name="project", default="", hide=True)),
diff --git a/build_files/buildbot/master_unpack.py b/build_files/buildbot/master_unpack.py
index ecacf3bff6f..651a68b414e 100644
--- a/build_files/buildbot/master_unpack.py
+++ b/build_files/buildbot/master_unpack.py
@@ -117,6 +117,11 @@ if platform == '':
# extract
directory = 'public_html/download'
+if not branch or branch == 'master':
+ directory = 'public_html/download'
+elif branch == 'experimental-build':
+ directory = 'public_html/experimental'
+# else: put 'official' branches in their own public subdir of download/ ?
try:
zf = z.open(package)