Skip to content

Instantly share code, notes, and snippets.

@petrhosek
Created July 16, 2019 18:06
Show Gist options
  • Save petrhosek/b6ad713d6ace2f9f1e08333799017cd9 to your computer and use it in GitHub Desktop.
Save petrhosek/b6ad713d6ace2f9f1e08333799017cd9 to your computer and use it in GitHub Desktop.
core.workflow(
name = "scudo",
mode = "ITERATIVE",
origin = git.github_origin(
url = "https://github.com/llvm/llvm-project.git",
ref = "master",
describe_version = False,
),
destination = git.github_destination(
url = "[email protected]:petrhosek/scudo.git",
),
authoring = authoring.pass_thru("Default email <[email protected]>"),
origin_files = glob(["compiler-rt/lib/scudo/standalone/**"]),
destination_files = glob(["**"]),
transformations = [
core.move("compiler-rt/lib/scudo/standalone", ""),
],
)
core.workflow(
name = "libcxx",
mode = "ITERATIVE",
origin = git.github_origin(
url = "https://github.com/llvm/llvm-project.git",
ref = "master",
describe_version = False,
),
destination = git.github_destination(
url = "[email protected]:petrhosek/libcxx.git",
),
authoring = authoring.pass_thru("Default email <[email protected]>"),
origin_files = glob(["libcxx/**"]),
destination_files = glob(["**"]),
transformations = [
core.move("libcxx", ""),
],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment