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 = "git@github.com:petrhosek/scudo.git",
),
authoring = authoring.pass_thru("Default email <default@default.com>"),
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 = "git@github.com:petrhosek/libcxx.git",
),
authoring = authoring.pass_thru("Default email <default@default.com>"),
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