Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@
[submodule "_repos/LLaMA-Factory"]
path = _repos/LLaMA-Factory
url = https://github.com/the-seeds/LLaMA-Factory-Doc.git
branch = main
[submodule "_repos/VeOmni"]
path = _repos/VeOmni
url = https://github.com/ByteDance-Seed/VeOmni.git
branch = main
[submodule "_repos/ms-swift"]
path = _repos/ms-swift
url = https://github.com/modelscope/ms-swift.git
branch = main
[submodule "_repos/vllm-ascend"]
path = _repos/vllm-ascend
url = https://github.com/vllm-project/vllm-ascend.git
Expand All @@ -22,3 +25,4 @@
[submodule "_repos/deepspeed"]
path = _repos/deepspeed
url = https://github.com/deepspeedai/DeepSpeed.git
branch = master
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ init-submodules:
@git submodule sync --recursive
@n=0; \
while [ $$n -lt 3 ]; do \
git submodule update --init --remote && exit 0; \
git submodule update --init --depth=1 --remote && exit 0; \
n=$$((n+1)); \
echo "git submodule update failed (attempt $$n/3), retrying in 8s..."; \
sleep 8; \
Expand Down
Loading