You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
966 B
38 lines
966 B
core.workflow(
|
|
name = "default",
|
|
origin = git.origin(
|
|
url = "https://github.com/llvm/llvm-project.git",
|
|
ref = "main",
|
|
),
|
|
origin_files = glob(
|
|
[
|
|
"compiler-rt/lib/scudo/standalone/**",
|
|
"compiler-rt/LICENSE.TXT",
|
|
],
|
|
exclude = [
|
|
"**/CMakeLists.txt",
|
|
],
|
|
),
|
|
destination = git.gerrit_destination(
|
|
url = "https://android.googlesource.com/platform/external/scudo",
|
|
fetch = "master",
|
|
),
|
|
destination_files = glob(
|
|
[
|
|
"standalone/**",
|
|
"LICENSE.TXT",
|
|
],
|
|
exclude = [
|
|
"**/Android.bp"
|
|
],
|
|
),
|
|
authoring = authoring.pass_thru(
|
|
"Dynamic Tools Team <dynamic-tools@google.com>"
|
|
),
|
|
mode = 'ITERATIVE',
|
|
transformations = [
|
|
core.move("compiler-rt/lib/scudo/standalone/", "standalone"),
|
|
core.move("compiler-rt/LICENSE.TXT", "LICENSE.TXT"),
|
|
],
|
|
)
|