aboutsummaryrefslogtreecommitdiffstats
path: root/build/plugins/large_files.py
diff options
context:
space:
mode:
authorspreis <spreis@yandex-team.ru>2022-02-10 16:47:13 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:13 +0300
commitbcd1126cbd5d445cd0665d295198aa39c6ab8cbe (patch)
treed41d29a041d5733ef148335290dbb817b197d4cd /build/plugins/large_files.py
parent986cb5d624f352524bfa0c42c9a7695235cdaa41 (diff)
downloadydb-bcd1126cbd5d445cd0665d295198aa39c6ab8cbe.tar.gz
Restoring authorship annotation for <spreis@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'build/plugins/large_files.py')
-rw-r--r--build/plugins/large_files.py46
1 files changed, 23 insertions, 23 deletions
diff --git a/build/plugins/large_files.py b/build/plugins/large_files.py
index 33a78d7110..30816f973b 100644
--- a/build/plugins/large_files.py
+++ b/build/plugins/large_files.py
@@ -1,39 +1,39 @@
-import os
-import ymake
-from _common import strip_roots
-
-PLACEHOLDER_EXT = "external"
-
-
-def onlarge_files(unit, *args):
- """
+import os
+import ymake
+from _common import strip_roots
+
+PLACEHOLDER_EXT = "external"
+
+
+def onlarge_files(unit, *args):
+ """
@usage LARGE_FILES([AUTOUPDATED] Files...)
-
+
Use large file ether from working copy or from remote storage via placeholder <File>.external
If <File> is present locally (and not a symlink!) it will be copied to build directory.
Otherwise macro will try to locate <File>.external, parse it retrieve ot during build phase.
- """
- args = list(args)
+ """
+ args = list(args)
if args and args[0] == 'AUTOUPDATED':
args = args[1:]
- for arg in args:
+ for arg in args:
if arg == 'AUTOUPDATED':
unit.message(["warn", "Please set AUTOUPDATED argument before other file names"])
continue
- src = unit.resolve_arc_path(arg)
- if src.startswith("$S"):
- msg = "Used local large file {}. Don't forget to run 'ya upload --update-external' and commit {}.{}".format(src, src, PLACEHOLDER_EXT)
- unit.message(["warn", msg])
- unit.oncopy_file([arg, arg])
- else:
- out_file = strip_roots(os.path.join(unit.path(), arg))
- external = "{}.{}".format(arg, PLACEHOLDER_EXT)
+ src = unit.resolve_arc_path(arg)
+ if src.startswith("$S"):
+ msg = "Used local large file {}. Don't forget to run 'ya upload --update-external' and commit {}.{}".format(src, src, PLACEHOLDER_EXT)
+ unit.message(["warn", msg])
+ unit.oncopy_file([arg, arg])
+ else:
+ out_file = strip_roots(os.path.join(unit.path(), arg))
+ external = "{}.{}".format(arg, PLACEHOLDER_EXT)
from_external_cmd = [external, out_file, 'OUT_NOAUTO', arg]
if os.path.dirname(arg):
from_external_cmd.extend(("RENAME", os.path.basename(arg)))
unit.on_from_external(from_external_cmd)
- unit.onadd_check(['check.external', external])
-
+ unit.onadd_check(['check.external', external])
+