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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-08-29 12:13:41 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-08-30 19:01:50 +0300
commit718747c5895067c261a3fc11e9918fc1a8f1d385 (patch)
tree81611125be770339eb65789d4928cd72e913cdb8 /build_files/utils/make_update.py
parent464e545c723616372bfeec8e955bf1177437fa32 (diff)
Tests: auto download test files when running "make test"
Diffstat (limited to 'build_files/utils/make_update.py')
-rwxr-xr-xbuild_files/utils/make_update.py22
1 files changed, 3 insertions, 19 deletions
diff --git a/build_files/utils/make_update.py b/build_files/utils/make_update.py
index a019e17e0a8..8a32fc013be 100755
--- a/build_files/utils/make_update.py
+++ b/build_files/utils/make_update.py
@@ -8,11 +8,10 @@
import argparse
import os
-import re
import shutil
-import subprocess
import sys
+import make_utils
from make_utils import call
# Parse arguments
@@ -43,27 +42,12 @@ def print_stage(text):
print("")
# Test if we are building a specific release version.
-try:
- branch = subprocess.check_output([git_command, "rev-parse", "--abbrev-ref", "HEAD"])
-except subprocess.CalledProcessError as e:
- sys.stderr.write("Failed to get Blender git branch\n")
- sys.exit(1)
-
-branch = branch.strip().decode('utf8')
-release_version = re.search("^blender-v(.*)-release$", branch)
-if release_version:
- release_version = release_version.group(1)
- print("Using Release Blender v" + release_version)
+release_version = make_utils.git_branch_release_version(git_command)
# Setup for precompiled libraries and tests from svn.
if not only_code:
lib_dirpath = os.path.join('..', 'lib')
-
- if release_version:
- svn_branch = "tags/blender-" + release_version + "-release"
- else:
- svn_branch = "trunk"
- svn_url = "https://svn.blender.org/svnroot/bf-blender/" + svn_branch + "/lib/"
+ svn_url = make_utils.svn_libraries_base_url(release_version)
# Checkout precompiled libraries
if sys.platform == 'darwin':