[upstream_utils] Shorten file copy command (#6965)

The new upstream_utils command-line API has been nice, but the
copy-upstream-to-thirdparty command has been annoying to type. Since it
already has documentation, we can shorten it to make it easier to
remember and type.
This commit is contained in:
Tyler Veness
2024-08-15 07:44:50 -07:00
committed by GitHub
parent 44311671f8
commit 050eafd802
3 changed files with 22 additions and 22 deletions

View File

@@ -34,92 +34,92 @@ jobs:
run: | run: |
cd upstream_utils cd upstream_utils
./apriltag.py clone ./apriltag.py clone
./apriltag.py copy-upstream-to-thirdparty ./apriltag.py copy-src
- name: Run eigen.py - name: Run eigen.py
run: | run: |
cd upstream_utils cd upstream_utils
./eigen.py clone ./eigen.py clone
./eigen.py copy-upstream-to-thirdparty ./eigen.py copy-src
- name: Run fmt.py - name: Run fmt.py
run: | run: |
cd upstream_utils cd upstream_utils
./fmt.py clone ./fmt.py clone
./fmt.py copy-upstream-to-thirdparty ./fmt.py copy-src
- name: Run gcem.py - name: Run gcem.py
run: | run: |
cd upstream_utils cd upstream_utils
./gcem.py clone ./gcem.py clone
./gcem.py copy-upstream-to-thirdparty ./gcem.py copy-src
- name: Run gl3w.py - name: Run gl3w.py
run: | run: |
cd upstream_utils cd upstream_utils
./gl3w.py clone ./gl3w.py clone
./gl3w.py copy-upstream-to-thirdparty ./gl3w.py copy-src
- name: Run glfw.py - name: Run glfw.py
run: | run: |
cd upstream_utils cd upstream_utils
./glfw.py clone ./glfw.py clone
./glfw.py copy-upstream-to-thirdparty ./glfw.py copy-src
- name: Run googletest.py - name: Run googletest.py
run: | run: |
cd upstream_utils cd upstream_utils
./googletest.py clone ./googletest.py clone
./googletest.py copy-upstream-to-thirdparty ./googletest.py copy-src
- name: Run imgui.py - name: Run imgui.py
run: | run: |
cd upstream_utils cd upstream_utils
./imgui.py clone ./imgui.py clone
./imgui.py copy-upstream-to-thirdparty ./imgui.py copy-src
- name: Run implot.py - name: Run implot.py
run: | run: |
cd upstream_utils cd upstream_utils
./implot.py clone ./implot.py clone
./implot.py copy-upstream-to-thirdparty ./implot.py copy-src
- name: Run json.py - name: Run json.py
run: | run: |
cd upstream_utils cd upstream_utils
./json.py clone ./json.py clone
./json.py copy-upstream-to-thirdparty ./json.py copy-src
- name: Run libuv.py - name: Run libuv.py
run: | run: |
cd upstream_utils cd upstream_utils
./libuv.py clone ./libuv.py clone
./libuv.py copy-upstream-to-thirdparty ./libuv.py copy-src
- name: Run llvm.py - name: Run llvm.py
run: | run: |
cd upstream_utils cd upstream_utils
./llvm.py clone ./llvm.py clone
./llvm.py copy-upstream-to-thirdparty ./llvm.py copy-src
- name: Run mpack.py - name: Run mpack.py
run: | run: |
cd upstream_utils cd upstream_utils
./mpack.py clone ./mpack.py clone
./mpack.py copy-upstream-to-thirdparty ./mpack.py copy-src
- name: Run stack_walker.py - name: Run stack_walker.py
run: | run: |
cd upstream_utils cd upstream_utils
./stack_walker.py clone ./stack_walker.py clone
./stack_walker.py copy-upstream-to-thirdparty ./stack_walker.py copy-src
- name: Run memory.py - name: Run memory.py
run: | run: |
cd upstream_utils cd upstream_utils
./memory.py clone ./memory.py clone
./memory.py copy-upstream-to-thirdparty ./memory.py copy-src
- name: Run protobuf.py - name: Run protobuf.py
run: | run: |
cd upstream_utils cd upstream_utils
./protobuf.py clone ./protobuf.py clone
./protobuf.py copy-upstream-to-thirdparty ./protobuf.py copy-src
- name: Run sleipnir.py - name: Run sleipnir.py
run: | run: |
cd upstream_utils cd upstream_utils
./sleipnir.py clone ./sleipnir.py clone
./sleipnir.py copy-upstream-to-thirdparty ./sleipnir.py copy-src
- name: Run stb.py - name: Run stb.py
run: | run: |
cd upstream_utils cd upstream_utils
./stb.py clone ./stb.py clone
./stb.py copy-upstream-to-thirdparty ./stb.py copy-src
- name: Add untracked files to index so they count as changes - name: Add untracked files to index so they count as changes
run: git add -A run: git add -A
- name: Check output - name: Check output

View File

@@ -37,7 +37,7 @@ Update the `upstream_utils` patch files and the tag in the script.
Copy the updated upstream files into the thirdparty files within allwpilib. Copy the updated upstream files into the thirdparty files within allwpilib.
```bash ```bash
./<lib>.py copy-upstream-to-thirdparty ./<lib>.py copy-src
``` ```
## Adding patch to thirdparty library ## Adding patch to thirdparty library
@@ -78,5 +78,5 @@ Update the `upstream_utils` patch files.
Rerun `<lib>.py` to reimport the thirdparty files. Rerun `<lib>.py` to reimport the thirdparty files.
```bash ```bash
./<lib>.py copy-upstream-to-thirdparty ./<lib>.py copy-src
``` ```

View File

@@ -564,7 +564,7 @@ class Lib:
) )
subparsers.add_parser( subparsers.add_parser(
"copy-upstream-to-thirdparty", "copy-src",
help="Copies files from the upstream repository into the thirdparty directory in allwpilib", help="Copies files from the upstream repository into the thirdparty directory in allwpilib",
) )
@@ -581,5 +581,5 @@ class Lib:
self.rebase(args.new_tag) self.rebase(args.new_tag)
elif args.subcommand == "format-patch": elif args.subcommand == "format-patch":
self.format_patch() self.format_patch()
elif args.subcommand == "copy-upstream-to-thirdparty": elif args.subcommand == "copy-src":
self.copy_upstream_to_thirdparty() self.copy_upstream_to_thirdparty()