Created
July 16, 2019 18:06
-
-
Save petrhosek/b6ad713d6ace2f9f1e08333799017cd9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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