Skip to content

Commit 88a2682

Browse files
authored
Merge pull request #267 from hjwp/faster-submodules
try to parallelise updating submodules
2 parents 739f2ef + d790bdc commit 88a2682

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ jobs:
4040
shell: bash
4141
run: |
4242
sed -i '[email protected]:_https://github.com/_' .gitmodules
43-
git submodule update --init --recursive
43+
git submodule init
44+
git submodule status | cut -d" " -f2 | xargs -n1 -P0 git submodule update
4445
4546
- name: setup Git
4647
shell: bash

0 commit comments

Comments
 (0)