blob: 54ca37c0dcc07408b3ae584ee7a62222fbc005e9 [file] [log] [blame]
Christopher Ferris36e4c332019-09-17 14:06:11 -07001core.workflow(
2 name = "default",
3 origin = git.origin(
4 url = "https://github.com/llvm/llvm-project.git",
Peter Collingbourne4eac19f2021-02-22 14:44:00 -08005 ref = "main",
Christopher Ferris36e4c332019-09-17 14:06:11 -07006 ),
7 origin_files = glob(
8 [
9 "compiler-rt/lib/scudo/standalone/**",
10 "compiler-rt/LICENSE.TXT",
11 ],
12 exclude = [
13 "**/CMakeLists.txt",
14 ],
15 ),
16 destination = git.gerrit_destination(
17 url = "https://android.googlesource.com/platform/external/scudo",
18 fetch = "master",
19 ),
20 destination_files = glob(
21 [
22 "standalone/**",
23 "LICENSE.TXT",
24 ],
25 exclude = [
26 "**/Android.bp"
27 ],
28 ),
Christopher Ferris36e4c332019-09-17 14:06:11 -070029 authoring = authoring.pass_thru(
30 "Dynamic Tools Team <dynamic-tools@google.com>"
31 ),
Christopher Ferrisacdaac42020-05-19 16:14:05 -070032 mode = 'ITERATIVE',
Christopher Ferris36e4c332019-09-17 14:06:11 -070033 transformations = [
34 core.move("compiler-rt/lib/scudo/standalone/", "standalone"),
35 core.move("compiler-rt/LICENSE.TXT", "LICENSE.TXT"),
Christopher Ferris36e4c332019-09-17 14:06:11 -070036 ],
37)