summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Desaulniers <ndesaulniers@google.com>2024-04-05 11:07:31 -0700
committerNick Desaulniers <ndesaulniers@google.com>2024-04-05 11:07:31 -0700
commit5bafe439f86726052b1acb3b7625472fa01055dd (patch)
tree801d1e4feabd7e18c7d599c125c9d729330c54db
parent52153e27ed3cac945247e6b1eeba1385efb78f6f (diff)
downloadllvm-libc-5bafe439f86726052b1acb3b7625472fa01055dd.tar.gz
external: libc: remove copybara config copy
We now use an internal copy of this config. It's possible to manually trigger the service when necessary, so this public copy no longer serves any purpose. Rather than keep it in sync, remove it. Test: go/copybara-service-commands#trigger Bug: 329484716 Change-Id: If41a441e60463126e5ea29420dd0f72cd3756b34
-rw-r--r--copy.bara.sky55
1 files changed, 0 insertions, 55 deletions
diff --git a/copy.bara.sky b/copy.bara.sky
deleted file mode 100644
index 430fbf51d283..000000000000
--- a/copy.bara.sky
+++ /dev/null
@@ -1,55 +0,0 @@
-# Use `copybara copy.bara.sky` to update sources from upstream.
-core.workflow(
- name = "default",
- origin = git.origin(
- url = "https://github.com/llvm/llvm-project.git",
- ref = "main",
- ),
- origin_files = glob(
- [
- "libc/**",
- "libc/LICENSE.TXT",
- ],
- # Exclude copying these files from upstream. Keep sorted.
- exclude = [
- "**/*.h.def",
- "**/*.inc",
- "**/*.md",
- "**/*.txt",
- "**/.clang-tidy",
- "**/CMakeLists.txt",
- "**/README.txt",
- "libc/.gitignore",
- "libc/AOR_v20.02/**",
- "libc/benchmarks/**",
- "libc/cmake/**",
- "libc/config/**",
- "libc/docs/**",
- "libc/examples/**",
- "libc/fuzzing/**",
- "libc/spec/**",
- "libc/startup/**",
- "libc/utils/**",
- ],
- ),
- destination = git.gerrit_destination(
- url = "https://android.googlesource.com/platform/external/llvm-libc",
- fetch = "main",
- ),
- destination_files = glob(
- [
- "**.cpp",
- "**.h",
- "LICENSE",
- ],
- ),
- authoring = authoring.pass_thru(
- "LLVM libc <llvm-libc@google.com>"
- ),
- transformations = [
- core.move("libc/LICENSE.TXT", "LICENSE"),
- core.move("libc/include", "include"),
- core.move("libc/src", "src"),
- core.move("libc/test", "test"),
- ],
-)