Skip to content

Commit 5ba2b84

Browse files
authored
Merge pull request #1715 from EliahKagan/ci-submodules
Have init script clone submodules unconditionally
2 parents a5b2fa5 + 8ea3133 commit 5ba2b84

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.github/workflows/cygwin-test.yml

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ jobs:
2626
- uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 0
29-
submodules: recursive
3029

3130
- name: Install Cygwin
3231
uses: cygwin/cygwin-install-action@v4

.github/workflows/pythonpackage.yml

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
- uses: actions/checkout@v4
2828
with:
2929
fetch-depth: 0
30-
submodules: recursive
3130

3231
- name: Set up Python ${{ matrix.python-version }}
3332
uses: actions/setup-python@v4

init-tests-after-clone.sh

+2-4
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,8 @@ git reset --hard HEAD~1
4747
# Point the master branch where we started, so we test the correct code.
4848
git reset --hard __testing_point__
4949

50-
# The tests need submodules. (On CI, they would already have been checked out.)
51-
if ! ci; then
52-
git submodule update --init --recursive
53-
fi
50+
# The tests need submodules, including a submodule with a submodule.
51+
git submodule update --init --recursive
5452

5553
# The tests need some version tags. Try to get them even in forks. This fetches
5654
# other objects too. So, locally, we always do it, for a consistent experience.

0 commit comments

Comments
 (0)