blob: 64c352dbf03c340388c83261fefa0cb8ec3579e7 [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",
5 ref = "master",
6 ),
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 ),
29 mode = "ITERATIVE",
30 authoring = authoring.pass_thru(
31 "Dynamic Tools Team <dynamic-tools@google.com>"
32 ),
33 transformations = [
34 core.move("compiler-rt/lib/scudo/standalone/", "standalone"),
35 core.move("compiler-rt/LICENSE.TXT", "LICENSE.TXT"),
36 ],
37)